mirror of https://github.com/bsnes-emu/bsnes.git
Add 'Unload Game' hotkey
This commit is contained in:
parent
c2c479440e
commit
a8c1f19f75
|
@ -155,6 +155,10 @@ auto InputManager::bindHotkeys() -> void {
|
||||||
program.power();
|
program.power();
|
||||||
}));
|
}));
|
||||||
|
|
||||||
|
hotkeys.append(InputHotkey("Unload Game").onPress([] {
|
||||||
|
program.unload();
|
||||||
|
}));
|
||||||
|
|
||||||
hotkeys.append(InputHotkey("Quit Emulator").onPress([] {
|
hotkeys.append(InputHotkey("Quit Emulator").onPress([] {
|
||||||
program.quit();
|
program.quit();
|
||||||
}));
|
}));
|
||||||
|
|
Loading…
Reference in New Issue