mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- fixed remaining issues with Blood's cutscenes.
This commit is contained in:
parent
eaf5e1fba5
commit
6c2aab3017
1 changed files with 15 additions and 0 deletions
|
@ -122,6 +122,16 @@ class BloodSummaryScreen : SummaryScreenBase
|
||||||
Blood.sndStartSample(268, 128, -1, false, CHANF_UI);
|
Blood.sndStartSample(268, 128, -1, false, CHANF_UI);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override bool OnEvent(InputEvent ev)
|
||||||
|
{
|
||||||
|
if (ev.type == InputEvent.Type_KeyDown && !Raze.specialKeyEvent(ev))
|
||||||
|
{
|
||||||
|
jobstate = skipped;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void DrawKills()
|
void DrawKills()
|
||||||
{
|
{
|
||||||
String pBuffer;
|
String pBuffer;
|
||||||
|
@ -245,6 +255,11 @@ class BloodLoadScreen : ScreenJob
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override void OnTick()
|
||||||
|
{
|
||||||
|
if (fadestate == visible) jobstate = finished;
|
||||||
|
}
|
||||||
|
|
||||||
override void Draw(double sr)
|
override void Draw(double sr)
|
||||||
{
|
{
|
||||||
BloodScreen.DrawBackground();
|
BloodScreen.DrawBackground();
|
||||||
|
|
Loading…
Reference in a new issue