mirror of
https://github.com/DrBeef/Raze.git
synced 2024-11-15 08:52:00 +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;
|
||||
}
|
||||
|
||||
override void Start()
|
||||
{
|
||||
System.StopMusic();
|
||||
}
|
||||
|
||||
|
||||
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);
|
||||
|
|
Loading…
Reference in a new issue