mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- used pushv to make the intro init code look nicer.
This commit is contained in:
parent
b515543016
commit
9d20185b39
1 changed files with 3 additions and 4 deletions
|
@ -45,10 +45,9 @@ class DukeIntro : ScreenJobRunner
|
|||
if (!Raze.isShareware())
|
||||
{
|
||||
Array<int> soundinfo;
|
||||
soundinfo.Push(1);
|
||||
soundinfo.Push(DukeSnd.FLY_BY+1);
|
||||
soundinfo.Push(19);
|
||||
soundinfo.Push(DukeSnd.PIPEBOMB_EXPLODE+1);
|
||||
soundinfo.Pushv(
|
||||
1, DukeSnd.FLY_BY+1,
|
||||
19, DukeSnd.PIPEBOMB_EXPLODE+1);
|
||||
jobs.Push(MoviePlayerJob.CreateWithSoundinfo("logo.anm", soundinfo, 9, 9, 9));
|
||||
}
|
||||
if (!Raze.isNam()) jobs.Push(new("DRealmsScreen").Init());
|
||||
|
|
Loading…
Reference in a new issue