diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-12 06:56:22 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-12 06:56:22 +0200 |
commit | 98b940052c92d509192e6810666fa655ea7682cd (patch) | |
tree | 6826a0bec9113b9b5e1dfb137bf34ffb6d4f0b86 /src/core/loader | |
parent | Fixed invalid cast in loader (diff) | |
download | yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.gz yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.bz2 yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.lz yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.xz yuzu-98b940052c92d509192e6810666fa655ea7682cd.tar.zst yuzu-98b940052c92d509192e6810666fa655ea7682cd.zip |
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); std::string GetFileTypeString(FileType type); /// Return type for functions in Loader namespace -enum class ResultStatus { +enum class ResultStatus : u16 { Success, ErrorAlreadyLoaded, ErrorNotImplemented, |