mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 19:29:09 +00:00
Merge pull request #370 from Deledrius/framenum_fix
Replace hardcoded frame number in plDTProgressMgr.
This commit is contained in:
@ -157,7 +157,7 @@ void plDTProgressMgr::Draw( plPipeline *p )
|
||||
if ((currentMs - fLastDraw) > 30)
|
||||
{
|
||||
fCurrentImage++;
|
||||
if (fCurrentImage >= 18)
|
||||
if (fCurrentImage >= plProgressMgr::NumLoadingFrames())
|
||||
fCurrentImage = 0;
|
||||
|
||||
fLastDraw = currentMs;
|
||||
|
Reference in New Issue
Block a user