summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 07:40:29 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2015-08-16 07:40:29 +0200
commit0aa443a8715d83745ae8cb2914b74f8a358afc2d (patch)
tree0b687a848a21611c03aeee103df10ae635002ed7 /src/core
parentMerge pull request #1017 from LittleWhite-tb/qt-recent-files (diff)
parentProperly indicate that CIA support is not implemented yet (diff)
downloadyuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar.gz
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar.bz2
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar.lz
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar.xz
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.tar.zst
yuzu-0aa443a8715d83745ae8cb2914b74f8a358afc2d.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/loader/loader.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index f5b349a77..062291006 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -77,6 +77,8 @@ static const char* GetFileTypeString(FileType type) {
return "NCSD";
case FileType::CXI:
return "NCCH";
+ case FileType::CIA:
+ return "CIA";
case FileType::ELF:
return "ELF";
case FileType::THREEDSX:
@@ -134,6 +136,10 @@ ResultStatus LoadFile(const std::string& filename) {
break;
}
+ // CIA file format...
+ case FileType::CIA:
+ return ResultStatus::ErrorNotImplemented;
+
// Error occurred durring IdentifyFile...
case FileType::Error: