Report 1080p resolution when in docked mode (#2618)

This commit is contained in:
gdkchan 2021-09-11 17:24:10 -03:00 committed by GitHub
parent 117e32a6ff
commit a4089fc878
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -193,8 +193,16 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
// GetDefaultDisplayResolution() -> (u32, u32)
public ResultCode GetDefaultDisplayResolution(ServiceCtx context)
{
context.ResponseData.Write(1280);
context.ResponseData.Write(720);
if (context.Device.System.State.DockedMode)
{
context.ResponseData.Write(1920);
context.ResponseData.Write(1080);
}
else
{
context.ResponseData.Write(1280);
context.ResponseData.Write(720);
}
return ResultCode.Success;
}