mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:58:35 +00:00
10 lines
212 B
C#
10 lines
212 B
C#
namespace Ryujinx.Core.OsHle.Objects
|
|
{
|
|
static class ErrorCode
|
|
{
|
|
public static long MakeError(ErrorModule Module, int Code)
|
|
{
|
|
return (int)Module | (Code << 9);
|
|
}
|
|
}
|
|
} |