Deshabilitada la opción de cambio de modo de video con la directiva de compilador ARCADE
This commit is contained in:
@@ -294,6 +294,7 @@ void Screen::update()
|
||||
// Comprueba las entradas
|
||||
void Screen::checkInput()
|
||||
{
|
||||
#ifndef ARCADE
|
||||
if (input->checkInput(input_window_fullscreen, DO_NOT_ALLOW_REPEAT))
|
||||
{
|
||||
switchVideoMode();
|
||||
@@ -321,8 +322,9 @@ void Screen::checkInput()
|
||||
const std::string value = options->video.shaders ? "on" : "off";
|
||||
showNotification("Shaders " + value);
|
||||
}
|
||||
#endif
|
||||
|
||||
else if (input->checkInput(input_showfps, DO_NOT_ALLOW_REPEAT))
|
||||
if (input->checkInput(input_showfps, DO_NOT_ALLOW_REPEAT))
|
||||
{
|
||||
showFps = !showFps;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user