2018-08-16 19:47:36 -04:00
|
|
|
namespace Ryujinx.HLE.HOS
|
2018-03-05 14:18:37 -05:00
|
|
|
{
|
|
|
|
static class ErrorCode
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
public static uint MakeError(ErrorModule module, int code)
|
2018-03-05 14:18:37 -05:00
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
return (uint)module | ((uint)code << 9);
|
2018-03-05 14:18:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|