Spelling fix: GenertateObjectId -> GenerateObjectId
This commit is contained in:
parent
b0c8a92ea4
commit
a81092cd57
3 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ namespace Ryujinx.OsHle.Handles
|
|||
ObjIds = new IdPool();
|
||||
}
|
||||
|
||||
public int GenertateObjectId(object Obj)
|
||||
public int GenerateObjectId(object Obj)
|
||||
{
|
||||
int Id = ObjIds.GenerateId();
|
||||
|
||||
|
|
|
@ -212,7 +212,7 @@ namespace Ryujinx.OsHle.Ipc
|
|||
|
||||
Ns.Os.Handles.ReplaceData(HndId, Dom);
|
||||
|
||||
return FillResponse(Response, 0, Dom.GenertateObjectId(Dom));
|
||||
return FillResponse(Response, 0, Dom.GenerateObjectId(Dom));
|
||||
}
|
||||
|
||||
private static IpcMessage IpcDuplicateSessionEx(
|
||||
|
|
|
@ -9,7 +9,7 @@ namespace Ryujinx.OsHle.Objects
|
|||
{
|
||||
if (Context.Session is HDomain Dom)
|
||||
{
|
||||
Context.Response.ResponseObjIds.Add(Dom.GenertateObjectId(Obj));
|
||||
Context.Response.ResponseObjIds.Add(Dom.GenerateObjectId(Obj));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue