mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 09:59:38 -06:00
10 lines
208 B
C#
10 lines
208 B
C#
namespace Ryujinx.HLE.HOS
|
|
{
|
|
static class ErrorCode
|
|
{
|
|
public static uint MakeError(ErrorModule Module, int Code)
|
|
{
|
|
return (uint)Module | ((uint)Code << 9);
|
|
}
|
|
}
|
|
} |