mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 23:26:40 +00:00
added set: getavailablelanguagecount (#65)
This commit is contained in:
parent
ca6cf1cc90
commit
33ad3982aa
1 changed files with 9 additions and 1 deletions
|
@ -15,7 +15,8 @@ namespace Ryujinx.Core.OsHle.Services.Set
|
|||
{
|
||||
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
||||
{
|
||||
{ 1, GetAvailableLanguageCodes }
|
||||
{ 1, GetAvailableLanguageCodes },
|
||||
{ 3, GetAvailableLanguageCodeCount }
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -41,5 +42,12 @@ namespace Ryujinx.Core.OsHle.Services.Set
|
|||
|
||||
return 0;
|
||||
}
|
||||
|
||||
public static long GetAvailableLanguageCodeCount(ServiceCtx Context)
|
||||
{
|
||||
Context.ResponseData.Write(LangCodesCount);
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue