Fix improper callback id in FlareBurst.

Thanks to NoOne for report
This commit is contained in:
nukeykt 2019-08-09 08:53:03 +09:00 committed by Christoph Oelckers
parent 68c7b8c402
commit f6ce571075

View file

@ -146,7 +146,7 @@ void FlareBurst(int nSprite) // 2
xvel[pSpawn->index] += dx;
yvel[pSpawn->index] += dy;
zvel[pSpawn->index] += dz;
evPost(pSpawn->index, 3, 960, CALLBACK_ID_3);
evPost(pSpawn->index, 3, 960, CALLBACK_ID_1);
}
evPost(nSprite, 3, 0, CALLBACK_ID_1);
}