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-06 05:16:24 -06:00
|
|
|
public static uint MakeError(ErrorModule module, int code)
|
2018-03-05 16:18:37 -03:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
return (uint)module | ((uint)code << 9);
|
2018-03-05 16:18:37 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|