mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
main: Resolve error string not displaying
During the transition to make the error dialog translatable, I accidentally got rid of the conversion to ResultStatus, which prevented operator<< from being invoked during formatting. This adds a function to directly retrieve the result status string instead so that it displays again.
This commit is contained in:
parent
71e18dddbe
commit
86592b274e
3 changed files with 8 additions and 2 deletions
|
@ -135,6 +135,7 @@ enum class ResultStatus : u16 {
|
|||
ErrorINITooManyKIPs,
|
||||
};
|
||||
|
||||
std::string GetResultStatusString(ResultStatus status);
|
||||
std::ostream& operator<<(std::ostream& os, ResultStatus status);
|
||||
|
||||
/// Interface for loading an application
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue