diff options
author | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-06-25 12:27:58 +0000 |
---|---|---|
committer | whiteshark0 <whiteshark0@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-06-25 12:27:58 +0000 |
commit | 26173c50974c12b7ca6c9302efe6bd32c555df30 (patch) | |
tree | eb61708809a5c4fd6436abd2e7c5f34343e0b140 /Game/Code/SMpeg | |
parent | e0c4de18cabd3f1f27376afe389cdd4470ee198d (diff) | |
download | usdx-26173c50974c12b7ca6c9302efe6bd32c555df30.tar.gz usdx-26173c50974c12b7ca6c9302efe6bd32c555df30.tar.xz usdx-26173c50974c12b7ca6c9302efe6bd32c555df30.zip |
Added ability to display Videos only in full size and Backgrounds in half size.
Fullsize is now the standard value for Moviesize
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@268 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Game/Code/SMpeg/USmpeg.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/SMpeg/USmpeg.pas b/Game/Code/SMpeg/USmpeg.pas index 85f3f988..317b04bb 100644 --- a/Game/Code/SMpeg/USmpeg.pas +++ b/Game/Code/SMpeg/USmpeg.pas @@ -253,7 +253,7 @@ begin TexT := 110 / 600 * (textures.movie_height / 1024{512});
TexB := 490 / 600 * (textures.movie_height / 1024{512});
- if Ini.MovieSize = 1 then begin
+ if Ini.MovieSize >= 1 then begin
// full screen size
CropT := 0;
CropB := 600;
|