diff options
| author | 2018-07-30 12:46:23 -0400 | |
|---|---|---|
| committer | 2018-08-01 00:16:54 -0400 | |
| commit | 187d8e215fb157edaa9f3976bebba9a9a7ed103d (patch) | |
| tree | 140cbfbd109281adc87c9c79ee07976ba54888cd /src/core/loader/loader.h | |
| parent | Use static const instead of const static (diff) | |
| download | yuzu-187d8e215fb157edaa9f3976bebba9a9a7ed103d.tar.gz yuzu-187d8e215fb157edaa9f3976bebba9a9a7ed103d.tar.xz yuzu-187d8e215fb157edaa9f3976bebba9a9a7ed103d.zip | |
Use more descriptive error codes and messages
Diffstat (limited to 'src/core/loader/loader.h')
| -rw-r--r-- | src/core/loader/loader.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index dc8d28311..cd8b41bb6 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -73,7 +73,8 @@ enum class ResultStatus { | |||
| 73 | ErrorNotUsed, | 73 | ErrorNotUsed, |
| 74 | ErrorAlreadyLoaded, | 74 | ErrorAlreadyLoaded, |
| 75 | ErrorMemoryAllocationFailed, | 75 | ErrorMemoryAllocationFailed, |
| 76 | ErrorEncrypted, | 76 | ErrorMissingKeys, |
| 77 | ErrorDecrypting, | ||
| 77 | ErrorUnsupportedArch, | 78 | ErrorUnsupportedArch, |
| 78 | }; | 79 | }; |
| 79 | 80 | ||