mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-22 20:45:11 +00:00
Default exit shortcut to zero
This commit is contained in:
parent
311a2eaa41
commit
8d36ab5909
2 changed files with 2 additions and 4 deletions
|
@ -84,9 +84,7 @@ void FurnaceGUI::doAction(int what) {
|
|||
}
|
||||
break;
|
||||
case GUI_ACTION_QUIT:
|
||||
{
|
||||
requestQuit();
|
||||
}
|
||||
requestQuit();
|
||||
break;
|
||||
case GUI_ACTION_PLAY_TOGGLE:
|
||||
if (e->isPlaying() && !e->isStepping()) {
|
||||
|
|
|
@ -548,7 +548,7 @@ const FurnaceGUIActionDef guiActions[GUI_ACTION_MAX]={
|
|||
#else
|
||||
D("REDO", "Redo", FURKMOD_CMD|SDLK_y),
|
||||
#endif
|
||||
D("QUIT", "Exit", FURKMOD_CMD|SDLK_q),
|
||||
D("QUIT", "Exit", 0),
|
||||
D("PLAY_TOGGLE", "Play/Stop (toggle)", SDLK_RETURN),
|
||||
D("PLAY", "Play", 0),
|
||||
D("STOP", "Stop", 0),
|
||||
|
|
Loading…
Reference in a new issue