mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-16 09:38:14 -05: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:
@ -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
|
||||
|
Reference in New Issue
Block a user