forked from Mirror/Ryujinx
Report 1080p resolution when in docked mode (#2618)
This commit is contained in:
parent
117e32a6ff
commit
a4089fc878
1 changed files with 10 additions and 2 deletions
|
@ -192,9 +192,17 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Sys
|
||||||
[CommandHipc(60)] // 3.0.0+
|
[CommandHipc(60)] // 3.0.0+
|
||||||
// GetDefaultDisplayResolution() -> (u32, u32)
|
// GetDefaultDisplayResolution() -> (u32, u32)
|
||||||
public ResultCode GetDefaultDisplayResolution(ServiceCtx context)
|
public ResultCode GetDefaultDisplayResolution(ServiceCtx context)
|
||||||
|
{
|
||||||
|
if (context.Device.System.State.DockedMode)
|
||||||
|
{
|
||||||
|
context.ResponseData.Write(1920);
|
||||||
|
context.ResponseData.Write(1080);
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
context.ResponseData.Write(1280);
|
context.ResponseData.Write(1280);
|
||||||
context.ResponseData.Write(720);
|
context.ResponseData.Write(720);
|
||||||
|
}
|
||||||
|
|
||||||
return ResultCode.Success;
|
return ResultCode.Success;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue