FspSrv improvements, also fix ImageEnd for NROs without a MOD0 section
This commit is contained in:
@@ -23,6 +23,13 @@ namespace Ryujinx.Core.OsHle.Services
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long HidGetSupportedNpadStyleSet(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long HidSetSupportedNpadStyleSet(ServiceCtx Context)
|
||||
{
|
||||
long Unknown0 = Context.RequestData.ReadInt64();
|
||||
@@ -52,5 +59,19 @@ namespace Ryujinx.Core.OsHle.Services
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long HidGetNpadJoyHoldType(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(0L);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long HidCreateActiveVibrationDeviceList(ServiceCtx Context)
|
||||
{
|
||||
MakeObject(Context, new IActiveApplicationDeviceList());
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user