diff options
| author | 2018-04-06 17:06:32 +0200 | |
|---|---|---|
| committer | 2018-04-06 11:06:32 -0400 | |
| commit | 358050cfc6cb88b5bfd3997f1e3f1e135ae808e6 (patch) | |
| tree | 08887b0c7c7db8277494f9b4b18b9e92b8259283 /src/core/core.cpp | |
| parent | Merge pull request #312 from jroweboy/update-fmtlib (diff) | |
| download | yuzu-358050cfc6cb88b5bfd3997f1e3f1e135ae808e6.tar.gz yuzu-358050cfc6cb88b5bfd3997f1e3f1e135ae808e6.tar.xz yuzu-358050cfc6cb88b5bfd3997f1e3f1e135ae808e6.zip | |
core, main.h: Abort on 32Bit ROMs (#309)
* core, main.h: Abort on 32Bit ROMs
* main.cpp: Fix Grammar
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 | } |