This commit is contained in:
greggameplayer 2018-07-23 14:48:40 +02:00 committed by GitHub
commit 1b2166072e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
public long GetOperationMode(ServiceCtx Context) public long GetOperationMode(ServiceCtx Context)
{ {
if(DockedMode == false) if (!DockedMode)
{ {
Context.ResponseData.Write((byte)OperationMode.Handheld); Context.ResponseData.Write((byte)OperationMode.Handheld);
} }
@ -72,7 +72,7 @@ namespace Ryujinx.HLE.OsHle.Services.Am
public long GetPerformanceMode(ServiceCtx Context) public long GetPerformanceMode(ServiceCtx Context)
{ {
if(DockedMode == false) if (!DockedMode)
{ {
Context.ResponseData.Write((byte)Apm.PerformanceMode.Handheld); Context.ResponseData.Write((byte)Apm.PerformanceMode.Handheld);
} }