Quake 4 related bug fixes.

This commit is contained in:
Justin Marshall
2026-05-10 01:30:36 -07:00
parent d37f87e493
commit 74dbe3d933
27 changed files with 4555 additions and 2777 deletions
+3 -3
View File
@@ -25,7 +25,7 @@ int LexerFactory::GetReadBinary()
{
if(cvarSystem->GetCVarBool("com_binaryRead"))
{
return LEXFL_READBINARY;
return 0;
}
else
{
@@ -42,10 +42,10 @@ int LexerFactory::GetWriteBinary()
case 0:
break;
case 1:
ret = LEXFL_WRITEBINARY;
ret = 0;
break;
case 2:
ret = LEXFL_WRITEBINARY | LEXFL_BYTESWAP;
ret = 0;
break;
}