Fixed build for older compilers
This commit is contained in:
parent
22300854f5
commit
90658d83d8
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue