This commit is contained in:
jduncanator 2019-11-18 14:42:33 +11:00
commit 12364db952
2 changed files with 3 additions and 3 deletions

View file

@ -104,7 +104,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
return ResultCode.Success; return ResultCode.Success;
} }
return ResultCode.NotAvailble; return ResultCode.NotAvailable;
} }
[Command(103)] [Command(103)]
@ -131,7 +131,7 @@ namespace Ryujinx.HLE.HOS.Services.Am.AppletAE.AllSystemAppletProxiesService.Lib
return ResultCode.Success; return ResultCode.Success;
} }
return ResultCode.NotAvailble; return ResultCode.NotAvailable;
} }
[Command(105)] [Command(105)]

View file

@ -7,7 +7,7 @@ namespace Ryujinx.HLE.HOS.Services.Am
Success = 0, Success = 0,
NotAvailble = (2 << ErrorCodeShift) | ModuleId, NotAvailable = (2 << ErrorCodeShift) | ModuleId,
NoMessages = (3 << ErrorCodeShift) | ModuleId, NoMessages = (3 << ErrorCodeShift) | ModuleId,
ObjectInvalid = (500 << ErrorCodeShift) | ModuleId, ObjectInvalid = (500 << ErrorCodeShift) | ModuleId,
OutOfBounds = (503 << ErrorCodeShift) | ModuleId, OutOfBounds = (503 << ErrorCodeShift) | ModuleId,