summaryrefslogtreecommitdiffstats
path: root/src/core/loader/loader.h
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-08-12 06:56:22 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-08-12 06:56:22 +0200
commit98b940052c92d509192e6810666fa655ea7682cd (patch)
tree6826a0bec9113b9b5e1dfb137bf34ffb6d4f0b86 /src/core/loader/loader.h
parentFixed invalid cast in loader (diff)
downloadyuzu-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/loader.h')
-rw-r--r--src/core/loader/loader.h2
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,