corregidos varios bugs

This commit is contained in:
2024-09-11 20:42:21 +02:00
parent 41c3e1f32c
commit a435e3ed8c
7 changed files with 29 additions and 27 deletions

View File

@@ -339,14 +339,14 @@ void Screen::checkInput()
const std::string size = std::to_string(options->video.window.size);
showNotification("Window size x" + size);
}
#endif
else if (input->checkInput(input_video_shaders, DO_NOT_ALLOW_REPEAT))
if (input->checkInput(input_video_shaders, DO_NOT_ALLOW_REPEAT))
{
switchShaders();
}
#endif
if (input->checkInput(input_showinfo, DO_NOT_ALLOW_REPEAT))
else if (input->checkInput(input_showinfo, DO_NOT_ALLOW_REPEAT))
{
showInfo = !showInfo;
}