Keep cheatcatcher's lists in sync

This commit is contained in:
miketout
2018-10-12 15:43:15 -07:00
parent 79b0432dc1
commit bb3d3ab770
2 changed files with 6 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ class CCheatList
bool IsHeightOrGreaterInList(uint32_t height)
{
auto range = orderedCheatCandidates.equal_range(height);
printf("IsHeightOrGreaterInList: %s\n", range.first == orderedCheatCandidates.end() ? "false" : "true");
return (range.first == orderedCheatCandidates.end());
}