diff options
author | b1indy <b1indy@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-22 19:37:52 +0000 |
---|---|---|
committer | b1indy <b1indy@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-12-22 19:37:52 +0000 |
commit | b1adf70e2659a6414175b5ae66ffa33f90bf573e (patch) | |
tree | d2356caff14cbeed495d43e22bff09393dc49ea4 /Game/Code/Screens | |
parent | a62b466452023d1d82881a124c29797844f553a6 (diff) | |
download | usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.tar.gz usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.tar.xz usdx-b1adf70e2659a6414175b5ae66ffa33f90bf573e.zip |
incorporated av_free_packet fix
fixed #VIDEOGAP problem
fixed unexpected #START problem (needs to be fixed in trunk too
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/branches/1.0.1@741 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Screens')
-rw-r--r-- | Game/Code/Screens/UScreenSing.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenSing.pas b/Game/Code/Screens/UScreenSing.pas index 283c51d0..3cedc0a1 100644 --- a/Game/Code/Screens/UScreenSing.pas +++ b/Game/Code/Screens/UScreenSing.pas @@ -351,7 +351,7 @@ begin // set movie
if (AktSong.Video <> '') and FileExists(AktSong.Path + AktSong.Video) then begin
FFmpegOpenFile(PAnsiChar(AktSong.Path + AktSong.Video));
- FFmpegSkip(AktSong.VideoGAP + AktSong.Start);
+ FFmpegSkip(AktSong.VideoGAP, AktSong.Start);
if (UVideo.VideoOpened) then AktSong.VideoLoaded := true;
end;
|