ServiceLm.cs 231 B

123456789101112
  1. namespace Ryujinx.Core.OsHle.Services
  2. {
  3. static partial class Service
  4. {
  5. public static long LmInitialize(ServiceCtx Context)
  6. {
  7. Context.Session.Initialize();
  8. return 0;
  9. }
  10. }
  11. }