mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-07 18:58:29 +02:00
Fix private on some call (#733)
Since the reflection code didn't take care about `private`, this cause regression, so I have added the flag just in case and fix calls who are declared with `private` to `public`.
This commit is contained in:
@@ -9,7 +9,7 @@ namespace Ryujinx.HLE.HOS.Services.Lr
|
||||
|
||||
[Command(0)]
|
||||
// OpenLocationResolver()
|
||||
private ResultCode OpenLocationResolver(ServiceCtx context)
|
||||
public ResultCode OpenLocationResolver(ServiceCtx context)
|
||||
{
|
||||
StorageId storageId = (StorageId)context.RequestData.ReadByte();
|
||||
|
||||
|
Reference in New Issue
Block a user