mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +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)
|
||||
return;
|
||||
|
||||
precacheTime = I_MSTime();
|
||||
precacheTime = I_FPSTime();
|
||||
|
||||
hitlist = new BYTE[cnt];
|
||||
memset (hitlist, 0, cnt);
|
||||
|
|
Loading…
Reference in a new issue