PCExhumed: Correct variable name/usage in runlist channel loop.

This commit is contained in:
sirlemonhead 2020-01-03 21:56:02 +00:00 committed by Christoph Oelckers
parent ed813562eb
commit 5e6c109d35

View file

@ -907,10 +907,10 @@ void LoadObjects()
InitRa();
InitChunks();
for (int nSprite = 0; nSprite < kMaxSprites; nSprite++)
for (int nChannel = 0; nChannel < kMaxChannels; nChannel++)
{
runlist_ChangeChannel(nSprite, 0);
runlist_ReadyChannel(nSprite);
runlist_ChangeChannel(nChannel, 0);
runlist_ReadyChannel(nChannel);
}
nCamerax = initx;