diff options
| author | 2018-08-12 14:56:22 +1000 | |
|---|---|---|
| committer | 2018-08-12 14:56:22 +1000 | |
| commit | 98b940052c92d509192e6810666fa655ea7682cd (patch) | |
| tree | 6826a0bec9113b9b5e1dfb137bf34ffb6d4f0b86 /src/core/loader | |
| parent | Fixed invalid cast in loader (diff) | |
| download | yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.gz yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.xz yuzu-98b940052c92d509192e6810666fa655ea7682cd.zip | |
made ResultStatus a u16
Diffstat (limited to 'src/core/loader')
| -rw-r--r-- | src/core/loader/loader.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.h b/src/core/loader/loader.h index cfdadbee3..285363549 100644 --- a/src/core/loader/loader.h +++ b/src/core/loader/loader.h | |||
| @@ -56,7 +56,7 @@ FileType GuessFromFilename(const std::string& name); | |||
| 56 | std::string GetFileTypeString(FileType type); | 56 | std::string GetFileTypeString(FileType type); |
| 57 | 57 | ||
| 58 | /// Return type for functions in Loader namespace | 58 | /// Return type for functions in Loader namespace |
| 59 | enum class ResultStatus { | 59 | enum class ResultStatus : u16 { |
| 60 | Success, | 60 | Success, |
| 61 | ErrorAlreadyLoaded, | 61 | ErrorAlreadyLoaded, |
| 62 | ErrorNotImplemented, | 62 | ErrorNotImplemented, |