mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-12-01 16:41:09 +00:00
- fixed: debug assertion failure in texture precaching
loading of level from command line attempted to use uninitialized time value
This commit is contained in:
parent
c8810db5fe
commit
571f7a4eb6
1 changed files with 1 additions and 1 deletions
|
@ -1239,7 +1239,7 @@ void FTextureManager::PrecacheLevel (void)
|
||||||
if (demoplayback)
|
if (demoplayback)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
precacheTime = I_MSTime();
|
precacheTime = I_FPSTime();
|
||||||
|
|
||||||
hitlist = new BYTE[cnt];
|
hitlist = new BYTE[cnt];
|
||||||
memset (hitlist, 0, cnt);
|
memset (hitlist, 0, cnt);
|
||||||
|
|
Loading…
Reference in a new issue