diff options
Diffstat (limited to 'src/core/core.cpp')
| -rw-r--r-- | src/core/core.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp index 11654d4da..9f5507a65 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp | |||
| @@ -92,6 +92,8 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file | |||
| 92 | return ResultStatus::ErrorLoader_ErrorEncrypted; | 92 | return ResultStatus::ErrorLoader_ErrorEncrypted; |
| 93 | case Loader::ResultStatus::ErrorInvalidFormat: | 93 | case Loader::ResultStatus::ErrorInvalidFormat: |
| 94 | return ResultStatus::ErrorLoader_ErrorInvalidFormat; | 94 | return ResultStatus::ErrorLoader_ErrorInvalidFormat; |
| 95 | case Loader::ResultStatus::ErrorUnsupportedArch: | ||
| 96 | return ResultStatus::ErrorUnsupportedArch; | ||
| 95 | default: | 97 | default: |
| 96 | return ResultStatus::ErrorSystemMode; | 98 | return ResultStatus::ErrorSystemMode; |
| 97 | } | 99 | } |
| @@ -115,6 +117,8 @@ System::ResultStatus System::Load(EmuWindow* emu_window, const std::string& file | |||
| 115 | return ResultStatus::ErrorLoader_ErrorEncrypted; | 117 | return ResultStatus::ErrorLoader_ErrorEncrypted; |
| 116 | case Loader::ResultStatus::ErrorInvalidFormat: | 118 | case Loader::ResultStatus::ErrorInvalidFormat: |
| 117 | return ResultStatus::ErrorLoader_ErrorInvalidFormat; | 119 | return ResultStatus::ErrorLoader_ErrorInvalidFormat; |
| 120 | case Loader::ResultStatus::ErrorUnsupportedArch: | ||
| 121 | return ResultStatus::ErrorUnsupportedArch; | ||
| 118 | default: | 122 | default: |
| 119 | return ResultStatus::ErrorLoader; | 123 | return ResultStatus::ErrorLoader; |
| 120 | } | 124 | } |