mirror of
https://github.com/ZDoom/Raze.git
synced 2025-06-01 09:42:27 +00:00
- fixed: starting a video must stop all playing music.
This commit is contained in:
parent
fdb13ffdfd
commit
f858d77e7c
1 changed files with 6 additions and 0 deletions
|
@ -234,6 +234,12 @@ class MoviePlayerJob : SkippableScreenJob
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override void Start()
|
||||||
|
{
|
||||||
|
System.StopMusic();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static ScreenJob CreateWithSoundInfo(String filename, Array<int> soundinfo, int flags, int frametime, int firstframetime = -1, int lastframetime = -1)
|
static ScreenJob CreateWithSoundInfo(String filename, Array<int> soundinfo, int flags, int frametime, int firstframetime = -1, int lastframetime = -1)
|
||||||
{
|
{
|
||||||
let movie = MoviePlayer.Create(filename, soundinfo, flags, frametime, firstframetime, lastframetime);
|
let movie = MoviePlayer.Create(filename, soundinfo, flags, frametime, firstframetime, lastframetime);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue