general: Replace RESULT_UNKNOWN with ResultUnknown

Transition to PascalCase for result names.
This commit is contained in:
Morph 2021-05-21 01:06:31 -04:00
parent 12c1766997
commit a0e4c2e1fc
13 changed files with 45 additions and 45 deletions

View file

@ -37,7 +37,7 @@ public:
return SignalAndModifyByWaitingCountIfEqual(addr, value, count);
}
UNREACHABLE();
return RESULT_UNKNOWN;
return ResultUnknown;
}
[[nodiscard]] ResultCode WaitForAddress(VAddr addr, Svc::ArbitrationType type, s32 value,
@ -51,7 +51,7 @@ public:
return WaitIfEqual(addr, value, timeout);
}
UNREACHABLE();
return RESULT_UNKNOWN;
return ResultUnknown;
}
private: