Fixed build for older compilers

This commit is contained in:
Sour 2018-03-15 21:37:30 -04:00
parent 22300854f5
commit 90658d83d8

View file

@ -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()
{