more controller support and fix some crashes

This commit is contained in:
Ondřej Novák 2025-03-04 12:07:40 +01:00
parent 3f946405b9
commit 0e251dcd05
19 changed files with 608 additions and 195 deletions

View file

@ -1651,7 +1651,22 @@ static void saveload_keyboard(EVENT_MSG *msg,void **_)
} else {
load_save_pos_ingame(last_select);break;
}
}
}break;
case 60:if (force_save) {
unwire_proc();wire_proc();
} else {
clk_saveload(1, 0, 0, 0, 0);
}
break;
case 61:if (!force_save) {
unwire_proc();wire_proc();
} else {
clk_saveload(0, 0, 0, 0, 0);
}
break;
case 59:game_setup(0,0,0,0,0);break;
case 64:go_book(0, 0, 0, 0, 0);break;
}
}
}