mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-13 06:36:39 +00:00
3615a70cae
This reverts commit 85dbb9559a
.
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);
|
|
}
|
|
}
|
|
} |