diff --git a/Core/FileSystems/MetaFileSystem.cpp b/Core/FileSystems/MetaFileSystem.cpp index 6ecd36226c..173cf4a863 100644 --- a/Core/FileSystems/MetaFileSystem.cpp +++ b/Core/FileSystems/MetaFileSystem.cpp @@ -654,7 +654,6 @@ u64 MetaFileSystem::getDirSize(const std::string &dirPath) { for (auto file : allFiles) { if (file.name == "." || file.name == "..") continue; - _assert_(!file.name.empty()); if (file.type == FILETYPE_DIRECTORY) { result += getDirSize(dirPath + file.name); } else { diff --git a/Core/HLE/sceIo.cpp b/Core/HLE/sceIo.cpp index 64af3b4ebb..d290d540b0 100644 --- a/Core/HLE/sceIo.cpp +++ b/Core/HLE/sceIo.cpp @@ -21,7 +21,6 @@ #include #include "Common/Thread/ThreadUtil.h" -#include "Common/TimeUtil.h" #include "Common/Profiler/Profiler.h" #include "Common/File/FileUtil.h"