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