diff --git a/source/common/screen.cpp b/source/common/screen.cpp index 30cd5cf..53d1dbb 100644 --- a/source/common/screen.cpp +++ b/source/common/screen.cpp @@ -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; }