Skip to content

Commit 903975e

Browse files
committed
fixup! [GEN][ZH] Polish debug logging strings by hand (#1232)
1 parent b7a1794 commit 903975e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Generals/Code/GameEngine/Include/GameClient/LanguageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct UnicodeStringsEqual
5555
Bool operator()(UnicodeString a, UnicodeString b) const
5656
{
5757
Bool retval = (a.compareNoCase(b) == 0);
58-
DEBUG_LOG(("Comparing %ls with %ls, return value is %s.", a.str(), b.str(), retval ? "true", "false"));
58+
DEBUG_LOG(("Comparing %ls with %ls, return value is %s.", a.str(), b.str(), retval ? "true" : "false"));
5959
return retval;
6060
}
6161
};

GeneralsMD/Code/GameEngine/Include/GameClient/LanguageFilter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ struct UnicodeStringsEqual
5555
Bool operator()(UnicodeString a, UnicodeString b) const
5656
{
5757
Bool retval = (a.compareNoCase(b) == 0);
58-
DEBUG_LOG(("Comparing %ls with %ls, return value is %s.", a.str(), b.str(), retval ? "true", "false"));
58+
DEBUG_LOG(("Comparing %ls with %ls, return value is %s.", a.str(), b.str(), retval ? "true" : "false"));
5959
return retval;
6060
}
6161
};

0 commit comments

Comments
 (0)