Add the ability to set or not docked mode via config file (#227)

* Add a toggleable DockedMode bool
This commit is contained in:
greggameplayer 2018-08-11 14:12:28 +02:00 committed by emmauss
parent 02a6fdcd13
commit 1fd4311e12
4 changed files with 17 additions and 5 deletions

View file

@ -36,6 +36,8 @@ namespace Ryujinx.HLE.OsHle
internal long DesiredLanguageCode { get; private set; }
internal string ActiveAudioOutput { get; private set; }
public bool DockedMode { get; set; }
public SystemStateMgr()
{
@ -82,4 +84,4 @@ namespace Ryujinx.HLE.OsHle
return Code;
}
}
}
}