2018-08-16 20:47:36 -03:00
|
|
|
namespace Ryujinx.HLE.HOS
|
2018-03-05 16:18:37 -03:00
|
|
|
{
|
|
|
|
static class ErrorCode
|
|
|
|
{
|
2018-12-04 22:52:39 -02:00
|
|
|
public static uint MakeError(ErrorModule Module, int Code)
|
2018-03-05 16:18:37 -03:00
|
|
|
{
|
2018-12-04 22:52:39 -02:00
|
|
|
return (uint)Module | ((uint)Code << 9);
|
2018-03-05 16:18:37 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|