diff options
author | Rodrigo Locatti <reinuseslisp@airmail.cc> | 2021-01-03 19:56:15 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 19:56:15 -0300 |
commit | 87a892552398ab34e4a5cc1b832ee886a1ff87e9 (patch) | |
tree | 8fc6fd1b1d83f3064463cae190eea7a235fbbcf5 /src/core/loader/loader.h | |
parent | 7265e80c12de2d24d759ee6956a2445bf9ac8992 (diff) | |
parent | 86592b274e228708cf0f9e1f4063e917f1bb3bd5 (diff) |
Merge pull request #5285 from lioncash/error-str
main: Resolve error string not displaying
Diffstat (limited to 'src/core/loader/loader.h')
-rw-r--r-- | src/core/loader/loader.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index 36e79e71d..b2e5b13de 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h @@ -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 |