Skip to content

Commit

Permalink
MEM: Allow loading modern maps.
Browse files Browse the repository at this point in the history
Stop gap fix for QW-Group#665. Could include some detection of memory to avoid
allocating 256MB if system is puny. Ideal solution would be dynamic
allocation.
  • Loading branch information
dsvensson committed Aug 28, 2022
1 parent 2e49428 commit 95ecb6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sys_posix.c
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ int main(int argc, char **argv)
if (COM_CheckParm(cmdline_param_client_nostdoutput))
sys_nostdout.value = 1;

Host_Init (argc, argv, 128 * 1024 * 1024);
Host_Init (argc, argv, 256 * 1024 * 1024);

oldtime = Sys_DoubleTime ();
while (1) {
Expand Down

0 comments on commit 95ecb6f

Please sign in to comment.