mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-24 13:45:45 +00:00
ResultCode: Mark any error code that isn't 0 as an error.
This commit is contained in:
parent
3ec2bf49cf
commit
585a145f31
1 changed files with 2 additions and 2 deletions
|
@ -108,11 +108,11 @@ union ResultCode {
|
|||
}
|
||||
|
||||
constexpr bool IsSuccess() const {
|
||||
return is_error.ExtractValue(raw) == 0;
|
||||
return raw == 0;
|
||||
}
|
||||
|
||||
constexpr bool IsError() const {
|
||||
return is_error.ExtractValue(raw) == 1;
|
||||
return raw != 0;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue