Add 'Unload Game' hotkey

This commit is contained in:
Sintendo 2020-07-01 21:52:28 +02:00
parent 5ef2568ccd
commit 785a401452
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();
}));