Skip to content

Commit

Permalink
Create async queue earlier
Browse files Browse the repository at this point in the history
Needed after b37e57f
  • Loading branch information
andrei-drexler committed Nov 14, 2023
1 parent 2b7637f commit 64c819f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/host.c
Original file line number Diff line number Diff line change
Expand Up @@ -1334,6 +1334,7 @@ void Host_Init (void)
Sys_Error ("Only %4.1f megs of memory available, can't execute game", host_parms->memsize / (float)0x100000);

Memory_Init (host_parms->membase, host_parms->memsize);
AsyncQueue_Init (&async_queue, 1024);
Cbuf_Init ();
Cmd_Init ();
LOG_Init (host_parms);
Expand All @@ -1351,7 +1352,6 @@ void Host_Init (void)
Mod_Init ();
NET_Init ();
SV_Init ();
AsyncQueue_Init (&async_queue, 1024);

Con_Printf ("Exe: " __TIME__ " " __DATE__ " (%s %d-bit)\n", SDL_GetPlatform (), (int)sizeof(void*)*8);
Con_Printf ("%4.1f megabyte heap\n", host_parms->memsize/ (1024*1024.0));
Expand Down

0 comments on commit 64c819f

Please sign in to comment.