general: Replace RESULT_UNKNOWN with ResultUnknown
Transition to PascalCase for result names.
This commit is contained in:
parent
12c1766997
commit
a0e4c2e1fc
13 changed files with 45 additions and 45 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue