fix(console): use correct logic for handling slow WTF file loading

This commit is contained in:
superp00t 2023-12-19 04:23:33 -05:00
parent 0193f00bbc
commit d731564ef1

View File

@ -206,7 +206,7 @@ int32_t CVar::Load(HOSFILE file) {
data = fastData;
}
auto grown = 0x1FFF >= size;
auto grown = 0x1fff < size;
int32_t result = 0;
size_t bytesRead = 0;