summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 1b125cbd3..d74489935 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -763,7 +763,7 @@ static std::size_t CalculateRomFSEntrySize(const FileSys::VirtualDir& dir, bool
763 out += 1 + CalculateRomFSEntrySize(subdir, full); 763 out += 1 + CalculateRomFSEntrySize(subdir, full);
764 } 764 }
765 765
766 return out + full ? dir->GetFiles().size() : 0; 766 return out + (full ? dir->GetFiles().size() : 0);
767} 767}
768 768
769static bool RomFSRawCopy(QProgressDialog& dialog, const FileSys::VirtualDir& src, 769static bool RomFSRawCopy(QProgressDialog& dialog, const FileSys::VirtualDir& src,