mirror of
https://github.com/libretro/Mesen.git
synced 2025-02-22 01:20:55 +00:00
Fixed build for older compilers
This commit is contained in:
parent
22300854f5
commit
90658d83d8
@ -19,7 +19,11 @@ namespace Mesen.GUI.Debugger
|
||||
};
|
||||
|
||||
private Keys _shortcutKeys = Keys.None;
|
||||
public Keys ShortcutKeys { get => _shortcutKeys; set => _shortcutKeys = value; }
|
||||
public Keys ShortcutKeys
|
||||
{
|
||||
get { return this._shortcutKeys; }
|
||||
set { this._shortcutKeys = value; }
|
||||
}
|
||||
|
||||
public frmDbgShortcutGetKey()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user