Doubled the max stringtable data size. Game code actually keeps the original value, but doubles it each time the read fails (max of 4 tries).

This commit is contained in:
Jordan Cristiano 2018-01-11 01:33:46 -05:00
parent 40a69abcd5
commit 134c8d0ed0
1 changed files with 1 additions and 1 deletions

View File

@ -49,5 +49,5 @@ enum constants
SIGNONSTATE_FULL = 6, // we are fully connected, first non-delta packet received
SIGNONSTATE_CHANGELEVEL = 7, // server is changing level, please wait
MAX_STRINGTABLE_DATA = 524288 // 2^19
MAX_STRINGTABLE_DATA = 2 * 524288 // 2^19
};