mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-29 17:19:50 -06:00
FspSrv improvements, also fix ImageEnd for NROs without a MOD0 section
This commit is contained in:
12
Ryujinx.Core/OsHle/Objects/ErrorCode.cs
Normal file
12
Ryujinx.Core/OsHle/Objects/ErrorCode.cs
Normal file
@ -0,0 +1,12 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Core.OsHle.Objects
|
||||
{
|
||||
static class ErrorCode
|
||||
{
|
||||
public static long MakeError(ErrorModule Module, int Code)
|
||||
{
|
||||
return (int)Module | (Code << 9);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user