mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-28 12:30:46 +00:00
- do not interpolate while playing the flash at Exhumed's exits.
Fixes #395
This commit is contained in:
parent
cf6b497d02
commit
70a6fbe9be
1 changed files with 1 additions and 1 deletions
|
@ -462,7 +462,7 @@ void GameInterface::Ticker()
|
||||||
PlayLocalSound(StaticSound[59], 0, true, CHANF_UI);
|
PlayLocalSound(StaticSound[59], 0, true, CHANF_UI);
|
||||||
|
|
||||||
if (EndLevel > 1) EndLevel--;
|
if (EndLevel > 1) EndLevel--;
|
||||||
r_NoInterpolate = false;
|
r_NoInterpolate = true;
|
||||||
int flash = 7 - abs(EndLevel - 7);
|
int flash = 7 - abs(EndLevel - 7);
|
||||||
videoTintBlood(flash * 30, flash * 30, flash * 30);
|
videoTintBlood(flash * 30, flash * 30, flash * 30);
|
||||||
if (EndLevel == 1)
|
if (EndLevel == 1)
|
||||||
|
|
Loading…
Reference in a new issue