mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-07-29 09:51:56 +00:00
12 lines
231 B
C#
12 lines
231 B
C#
namespace Ryujinx.Core.OsHle.Services
|
|
{
|
|
static partial class Service
|
|
{
|
|
public static long LmInitialize(ServiceCtx Context)
|
|
{
|
|
Context.Session.Initialize();
|
|
|
|
return 0;
|
|
}
|
|
}
|
|
} |