mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-12-29 15:19:48 +01:00
12 lines
No EOL
231 B
C#
12 lines
No EOL
231 B
C#
namespace Ryujinx.Core.OsHle.Services
|
|
{
|
|
static partial class Service
|
|
{
|
|
public static long LmInitialize(ServiceCtx Context)
|
|
{
|
|
Context.Session.Initialize();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |