mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
- fixed Exhumed laptop cutscene.
This commit is contained in:
parent
2b9a527aba
commit
091a9b7fef
1 changed files with 15 additions and 2 deletions
|
@ -1142,7 +1142,7 @@ private:
|
|||
int yy = ebp;
|
||||
|
||||
auto p = GStrings["REQUIRED_CHARACTERS"];
|
||||
if (1)//p && *p)
|
||||
if (p && *p)
|
||||
{
|
||||
yy *= 2;
|
||||
for (int i = 0; i < nStringTypeOn; i++, yy += 10)
|
||||
|
@ -1179,7 +1179,7 @@ private:
|
|||
{
|
||||
case 1:
|
||||
Phase1();
|
||||
if (skiprequest || ticks >= 60)
|
||||
if (skiprequest || ticks >= nextclock)
|
||||
{
|
||||
InitPhase2();
|
||||
phase = 2;
|
||||
|
@ -1224,6 +1224,19 @@ private:
|
|||
{
|
||||
skiprequest |= !Phase3();
|
||||
}
|
||||
if (skiprequest)
|
||||
{
|
||||
// Go to the next text page.
|
||||
if (screencnt != 2)
|
||||
{
|
||||
screencnt++;
|
||||
nextclock = ticks + 60;
|
||||
skiprequest = 0;
|
||||
phase = 1;
|
||||
}
|
||||
else state = finished;
|
||||
}
|
||||
|
||||
if (skiprequest)
|
||||
{
|
||||
state = finished;
|
||||
|
|
Loading…
Reference in a new issue