mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 20:46:43 +00:00
correct whitespaces
This commit is contained in:
parent
d70ed99fb1
commit
940de631ab
1 changed files with 8 additions and 8 deletions
|
@ -29,9 +29,9 @@ namespace Ryujinx.HLE.OsHle.Services.Set
|
|||
|
||||
public static long GetAvailableLanguageCodes(ServiceCtx Context)
|
||||
{
|
||||
GetAvailableLanguagesCodesMethod(Context.Request.RecvListBuff[0].Position, Context.Request.RecvListBuff[0].Size, Context);
|
||||
GetAvailableLanguagesCodesMethod(Context.Request.RecvListBuff[0].Position, Context.Request.RecvListBuff[0].Size, Context);
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
||||
|
@ -43,13 +43,13 @@ namespace Ryujinx.HLE.OsHle.Services.Set
|
|||
|
||||
public static long GetAvailableLanguageCodes2(ServiceCtx Context)
|
||||
{
|
||||
GetAvailableLanguagesCodesMethod(Context.Request.ReceiveBuff[0].Position, Context.Request.ReceiveBuff[0].Size, Context);
|
||||
GetAvailableLanguagesCodesMethod(Context.Request.ReceiveBuff[0].Position, Context.Request.ReceiveBuff[0].Size, Context);
|
||||
|
||||
return 0;
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long GetAvailableLanguagesCodesMethod(long Position, long Size, ServiceCtx Context)
|
||||
{
|
||||
public static long GetAvailableLanguagesCodesMethod(long Position, long Size, ServiceCtx Context)
|
||||
{
|
||||
int Count = (int)(Size / 8);
|
||||
|
||||
if (Count > SystemStateMgr.LanguageCodes.Length)
|
||||
|
@ -66,7 +66,7 @@ namespace Ryujinx.HLE.OsHle.Services.Set
|
|||
|
||||
Context.ResponseData.Write(Count);
|
||||
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue