Logging stubs.

This commit is contained in:
WilliamWsyHK 2018-12-09 17:47:08 +08:00
parent 8837a01fce
commit ea574a4d0d

View file

@ -141,6 +141,8 @@ namespace Ryujinx.HLE.HOS.Services.Nv
public long GetStatus(ServiceCtx context)
{
Logger.PrintStub(LogClass.ServiceNv, "Stubbed.");
context.ResponseData.Write(0x10);
return 0;
@ -157,6 +159,8 @@ namespace Ryujinx.HLE.HOS.Services.Nv
public long DumpGraphicsMemoryInfo(ServiceCtx context)
{
Logger.PrintStub(LogClass.ServiceNv, "Stubbed.");
return 0;
}