PR feedback

This commit is contained in:
gdk 2023-01-02 11:43:34 -03:00
parent fc0a1b4e85
commit 50cc2a67be

View file

@ -351,7 +351,7 @@ namespace Ryujinx.HLE.HOS
// TODO: // TODO:
// - Pass enough information (capabilities, process creation info, etc) on ServiceEntry for proper initialization. // - Pass enough information (capabilities, process creation info, etc) on ServiceEntry for proper initialization.
// - Have the ThreadStart function take the syscall, address space and thread context parameters instead of passing // - Have the ThreadStart function take the syscall, address space and thread context parameters instead of passing
// them here. // them here.
KernelStatic.StartInitialProcess(KernelContext, creationInfo, defaultCapabilities, 44, () => KernelStatic.StartInitialProcess(KernelContext, creationInfo, defaultCapabilities, 44, () =>
{ {
service.Start(KernelContext.Syscall, KernelStatic.GetCurrentProcess().CpuMemory, KernelStatic.GetCurrentThread().ThreadContext); service.Start(KernelContext.Syscall, KernelStatic.GetCurrentProcess().CpuMemory, KernelStatic.GetCurrentThread().ThreadContext);