1
0
Fork 0
forked from fte/fteqw

Thanks to The Beast, that's fixed.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@642 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2004-12-15 17:45:59 +00:00
parent dd1437ac63
commit c54c9cb121

View file

@ -1100,7 +1100,7 @@ int WINAPI WinMain (HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLin
t = COM_CheckParm("-mem") + 1;
if (t < com_argc)
parms.memsize = Q_atoi (com_argv[t]) * 1024;
parms.memsize = Q_atoi (com_argv[t]) * 1024*1024;
}
parms.membase = VirtualAlloc (NULL, parms.memsize, MEM_RESERVE, PAGE_NOACCESS);