Spelling fix: GenertateObjectId -> GenerateObjectId

This commit is contained in:
Ezekiel Bethel 2018-02-10 18:20:57 +00:00
commit a81092cd57
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ namespace Ryujinx.OsHle.Handles
ObjIds = new IdPool(); ObjIds = new IdPool();
} }
public int GenertateObjectId(object Obj) public int GenerateObjectId(object Obj)
{ {
int Id = ObjIds.GenerateId(); int Id = ObjIds.GenerateId();

View file

@ -212,7 +212,7 @@ namespace Ryujinx.OsHle.Ipc
Ns.Os.Handles.ReplaceData(HndId, Dom); Ns.Os.Handles.ReplaceData(HndId, Dom);
return FillResponse(Response, 0, Dom.GenertateObjectId(Dom)); return FillResponse(Response, 0, Dom.GenerateObjectId(Dom));
} }
private static IpcMessage IpcDuplicateSessionEx( private static IpcMessage IpcDuplicateSessionEx(

View file

@ -9,7 +9,7 @@ namespace Ryujinx.OsHle.Objects
{ {
if (Context.Session is HDomain Dom) if (Context.Session is HDomain Dom)
{ {
Context.Response.ResponseObjIds.Add(Dom.GenertateObjectId(Obj)); Context.Response.ResponseObjIds.Add(Dom.GenerateObjectId(Obj));
} }
else else
{ {