summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Kloen2017-01-29 17:31:12 +0100
committerGravatar Kloen2017-01-29 21:48:40 +0100
commitf14a53abd0ef1f3b4f16a3336a5f2a4ad1f81fc4 (patch)
treefa39c7bfe5d75c22ee1b7d99dd6c2b3c2cac1eb9 /src/core
parentMerge pull request #2485 from Kloen/killing-warnings-computehash64 (diff)
downloadyuzu-f14a53abd0ef1f3b4f16a3336a5f2a4ad1f81fc4.tar.gz
yuzu-f14a53abd0ef1f3b4f16a3336a5f2a4ad1f81fc4.tar.xz
yuzu-f14a53abd0ef1f3b4f16a3336a5f2a4ad1f81fc4.zip
core: fix archive_extsavedata.cpp warning on OSX
Diffstat (limited to 'src/core')
-rw-r--r--src/core/file_sys/archive_extsavedata.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/file_sys/archive_extsavedata.cpp b/src/core/file_sys/archive_extsavedata.cpp
index 51ce78435..dd2fb167f 100644
--- a/src/core/file_sys/archive_extsavedata.cpp
+++ b/src/core/file_sys/archive_extsavedata.cpp
@@ -107,6 +107,8 @@ public:
107 case PathParser::NotFound: 107 case PathParser::NotFound:
108 LOG_ERROR(Service_FS, "%s not found", full_path.c_str()); 108 LOG_ERROR(Service_FS, "%s not found", full_path.c_str());
109 return ERROR_FILE_NOT_FOUND; 109 return ERROR_FILE_NOT_FOUND;
110 case PathParser::FileFound:
111 break; // Expected 'success' case
110 } 112 }
111 113
112 FileUtil::IOFile file(full_path, "r+b"); 114 FileUtil::IOFile file(full_path, "r+b");