Add 'Unload Game' hotkey

This commit is contained in:
Sintendo 2020-07-01 21:52:28 +02:00 committed by Screwtapello
parent c2c479440e
commit a8c1f19f75
1 changed files with 4 additions and 0 deletions

View File

@ -155,6 +155,10 @@ auto InputManager::bindHotkeys() -> void {
program.power();
}));
hotkeys.append(InputHotkey("Unload Game").onPress([] {
program.unload();
}));
hotkeys.append(InputHotkey("Quit Emulator").onPress([] {
program.quit();
}));