mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-13 19:40:43 +00:00
Fix improper callback id in FlareBurst.
Thanks to NoOne for report
This commit is contained in:
parent
68c7b8c402
commit
f6ce571075
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ void FlareBurst(int nSprite) // 2
|
||||||
xvel[pSpawn->index] += dx;
|
xvel[pSpawn->index] += dx;
|
||||||
yvel[pSpawn->index] += dy;
|
yvel[pSpawn->index] += dy;
|
||||||
zvel[pSpawn->index] += dz;
|
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);
|
evPost(nSprite, 3, 0, CALLBACK_ID_1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue