Rewind: Added default shortcut keys for rewind

This commit is contained in:
Souryo 2017-04-29 08:29:47 -04:00
parent 7b80d5ee17
commit 4d48b6a95f

View File

@ -61,13 +61,15 @@ namespace Mesen.GUI.Config
{ {
if(EmulatorKeySet1 == null) { if(EmulatorKeySet1 == null) {
EmulatorKeySet1 = new EmulatorKeyMappings() { EmulatorKeySet1 = new EmulatorKeyMappings() {
FastForward = InteropEmu.GetKeyCode("Tab") FastForward = InteropEmu.GetKeyCode("Tab"),
Rewind = InteropEmu.GetKeyCode("Backspace")
}; };
} }
if(EmulatorKeySet2 == null) { if(EmulatorKeySet2 == null) {
EmulatorKeySet2 = new EmulatorKeyMappings() { EmulatorKeySet2 = new EmulatorKeyMappings() {
FastForward = InteropEmu.GetKeyCode("Pad1 R2") FastForward = InteropEmu.GetKeyCode("Pad1 R2"),
Rewind = InteropEmu.GetKeyCode("Pad1 L2")
}; };
} }
} }