Use move handle on NIFM since I can't test that now, it's better to leave it how it was

This commit is contained in:
gdkchan 2018-03-19 15:52:26 -03:00
parent 2d119966b3
commit 668d457600

View file

@ -47,7 +47,7 @@ namespace Ryujinx.Core.OsHle.IpcServices.Nifm
//FIXME: Is this supposed to return 2 events?
int Handle = Context.Process.HandleTable.OpenHandle(Event);
Context.Response.HandleDesc = IpcHandleDesc.MakeCopy(Handle);
Context.Response.HandleDesc = IpcHandleDesc.MakeMove(Handle);
return 0;
}