mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-15 06:02:29 -03:00
12 lines
226 B
C#
12 lines
226 B
C#
|
namespace Ryujinx.OsHle.Services
|
||
|
{
|
||
|
static partial class Service
|
||
|
{
|
||
|
public static long LmInitialize(ServiceCtx Context)
|
||
|
{
|
||
|
Context.Session.Initialize();
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
}
|
||
|
}
|