forked from jaildesigner-jailgames/jaildoctors_dilemma
- Cambiadas las teclas de cambiar el tamaño de ventana para adecuarse al estandar de jailgames
This commit is contained in:
@@ -147,29 +147,19 @@ void GameOver::checkInput()
|
||||
screen->switchBorder();
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_video_mode, REPEAT_FALSE))
|
||||
else if (input->checkInput(input_window_fullscreen, REPEAT_FALSE))
|
||||
{
|
||||
screen->switchVideoMode();
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_window_size_1, REPEAT_FALSE))
|
||||
else if (input->checkInput(input_window_dec_size, REPEAT_FALSE))
|
||||
{
|
||||
screen->setWindowSize(1);
|
||||
screen->decWindowSize();
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_window_size_2, REPEAT_FALSE))
|
||||
else if (input->checkInput(input_window_inc_size, REPEAT_FALSE))
|
||||
{
|
||||
screen->setWindowSize(2);
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_window_size_3, REPEAT_FALSE))
|
||||
{
|
||||
screen->setWindowSize(3);
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_window_size_4, REPEAT_FALSE))
|
||||
{
|
||||
screen->setWindowSize(4);
|
||||
screen->incWindowSize();
|
||||
}
|
||||
|
||||
else if (input->checkInput(input_swap_palette, REPEAT_FALSE))
|
||||
|
||||
Reference in New Issue
Block a user