diff options
author | basisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2015-09-04 20:18:28 +0000 |
---|---|---|
committer | basisbit <basisbit@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2015-09-04 20:18:28 +0000 |
commit | 6ff85ad711a5ff263563ea3fa922a7206235cae3 (patch) | |
tree | a9132f28d6baafb00dade9e4734ff1f43897663a /src/screens | |
parent | ebac563f0f8f4fba120cee79e8e6a7973e394677 (diff) | |
download | usdx-6ff85ad711a5ff263563ea3fa922a7206235cae3.tar.gz usdx-6ff85ad711a5ff263563ea3fa922a7206235cae3.tar.xz usdx-6ff85ad711a5ff263563ea3fa922a7206235cae3.zip |
* if NPOT is supported by the graphics card driver, do not manually resize videos and textures to a power of 2 with and hight. This slightly improves image quality because of less resizing (OpenGL handles this better anyways) and is a minor performance improvement on systems that support OpenGL 2.x or newer.
* please test this release and report bugs in the sourceforge forum or preferably our IRC channel
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@3129 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/screens')
-rw-r--r-- | src/screens/UScreenJukebox.pas | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/screens/UScreenJukebox.pas b/src/screens/UScreenJukebox.pas index de35bc2a..8e4b7712 100644 --- a/src/screens/UScreenJukebox.pas +++ b/src/screens/UScreenJukebox.pas @@ -1713,9 +1713,6 @@ begin Lyrics.AddLine(@Lines[0].Line[Lyrics.LineCounter]);
end;
- //Text[JukeboxTextSongText].Visible := true;
- //Text[JukeboxTextSongText].Text := CurrentSong.Artist + ' - ' + CurrentSong.Title;
-
Max := 9;
if (High(JukeboxVisibleSongs) < 9) then
|