Skip to content

Commit 2426e0b

Browse files
committed
refactor(big): use arrow operator and @BugFix tag for INIZH.big skip
1 parent 6deccd7 commit 2426e0b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Core/GameEngineDevice/Source/StdDevice/Common/StdBIGFileSystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ Bool StdBIGFileSystem::loadBigFilesFromDirectory(AsciiString dir, AsciiString fi
216216
FilenameListIter it = filenameList.begin();
217217
while (it != filenameList.end()) {
218218
#if RTS_ZEROHOUR
219-
// TheSuperHackers @fix bobtista 18/11/2025 Skip duplicate INIZH.big in Data\INI to prevent CRC mismatches on EA App/Origin installs
220-
if ((*it).endsWithNoCase("data\\ini\\inizh.big") || (*it).endsWithNoCase("data/ini/inizh.big")) {
219+
// TheSuperHackers @bugfix bobtista 18/11/2025 Skip duplicate INIZH.big in Data\INI to prevent CRC mismatches on EA App/Origin installs
220+
if (it->endsWithNoCase("data\\ini\\inizh.big") || it->endsWithNoCase("data/ini/inizh.big")) {
221221
it++;
222222
continue;
223223
}

Core/GameEngineDevice/Source/Win32Device/Common/Win32BIGFileSystem.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,8 +217,8 @@ Bool Win32BIGFileSystem::loadBigFilesFromDirectory(AsciiString dir, AsciiString
217217
FilenameListIter it = filenameList.begin();
218218
while (it != filenameList.end()) {
219219
#if RTS_ZEROHOUR
220-
// TheSuperHackers @fix bobtista 18/11/2025 Skip duplicate INIZH.big in Data\INI to prevent CRC mismatches on EA App/Origin installs
221-
if ((*it).endsWithNoCase("data\\ini\\inizh.big") || (*it).endsWithNoCase("data/ini/inizh.big")) {
220+
// TheSuperHackers @bugfix bobtista 18/11/2025 Skip duplicate INIZH.big in Data\INI to prevent CRC mismatches on EA App/Origin installs
221+
if (it->endsWithNoCase("data\\ini\\inizh.big") || it->endsWithNoCase("data/ini/inizh.big")) {
222222
it++;
223223
continue;
224224
}

0 commit comments

Comments
 (0)