forked from Mirror/Ryujinx
Merge pull request #344 from greggameplayer/patch-1
fix toggleable variable in config to set the docked mode
This commit is contained in:
commit
c05600a26b
2 changed files with 10 additions and 10 deletions
|
@ -69,7 +69,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
|
|||
{
|
||||
Apm.PerformanceMode Mode = DockedMode ? Apm.PerformanceMode.Docked : Apm.PerformanceMode.Handheld;
|
||||
|
||||
Context.ResponseData.Write((byte)Mode);
|
||||
Context.ResponseData.Write((int)Mode);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -37,7 +37,7 @@ namespace Ryujinx.HLE.OsHle
|
|||
|
||||
internal string ActiveAudioOutput { get; private set; }
|
||||
|
||||
public bool DockedMode { get; set; }
|
||||
public static bool DockedMode { get; set; }
|
||||
|
||||
public SystemStateMgr()
|
||||
{
|
||||
|
|
Reference in a new issue