mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 06:20:56 +00:00
- fixed level number for RRRA's travel animations.
first level is 1001, not 1.
This commit is contained in:
parent
0a020e9cc1
commit
126f6051d2
1 changed files with 1 additions and 1 deletions
|
@ -363,7 +363,7 @@ class RRCutscenes ui
|
|||
|
||||
static void BuildMapIntro(ScreenJobRunner runner, MapRecord map)
|
||||
{
|
||||
int ln = map.levelnumber - 1;
|
||||
int ln = map.levelnumber - 1001;
|
||||
if (ln == 0) return;
|
||||
if (ln >= 1000) ln -= 1000-7;
|
||||
|
||||
|
|
Loading…
Reference in a new issue