1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-01-30 19:46:49 -06:00

12 lines
231 B
C#
Raw Normal View History

namespace Ryujinx.Core.OsHle.Services
2018-02-04 20:08:20 -03:00
{
static partial class Service
{
public static long LmInitialize(ServiceCtx Context)
{
Context.Session.Initialize();
return 0;
}
}
}