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