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-05 00:52:39 +00:00
|
|
|
public static uint MakeError(ErrorModule Module, int Code)
|
2018-03-05 19:18:37 +00:00
|
|
|
{
|
2018-12-05 00:52:39 +00:00
|
|
|
return (uint)Module | ((uint)Code << 9);
|
2018-03-05 19:18:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|