diff options
author | Zach Hilman <zachhilman@gmail.com> | 2018-07-28 18:32:16 +0200 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2018-08-07 05:06:33 +0200 |
commit | 9e88f03e7591bd3b91d7af9b9995a727c0b92ac9 (patch) | |
tree | df8fb8701e41ac8ea525fe23b6b13e057e41d0b8 /src/core/loader/loader.cpp | |
parent | Merge pull request #931 from DarkLordZach/nca-as-drd (diff) | |
download | yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.gz yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.bz2 yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.lz yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.xz yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.tar.zst yuzu-9e88f03e7591bd3b91d7af9b9995a727c0b92ac9.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/loader/loader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp index 57e6c0365..0781fb8c1 100644 --- a/src/core/loader/loader.cpp +++ b/src/core/loader/loader.cpp @@ -68,7 +68,7 @@ FileType GuessFromFilename(const std::string& name) { return FileType::Unknown; } -const char* GetFileTypeString(FileType type) { +std::string GetFileTypeString(FileType type) { switch (type) { case FileType::ELF: return "ELF"; |