mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-30 17:42:08 +00:00
10 lines
No EOL
208 B
C#
10 lines
No EOL
208 B
C#
namespace Ryujinx.HLE.HOS
|
|
{
|
|
static class ErrorCode
|
|
{
|
|
public static uint MakeError(ErrorModule module, int code)
|
|
{
|
|
return (uint)module | ((uint)code << 9);
|
|
}
|
|
}
|
|
} |