diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-31 15:31:26 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-03-31 15:31:26 +0000 |
commit | 9a681dac366ee04fadc70a8b1f6739c37a6bf365 (patch) | |
tree | b2cc6776030e39f8bc9f3decfab709ed36f33462 /Game/Code/Screens/UScreenSingModi.pas | |
parent | 5b7e8043571bb959891c06a6dd5c7e9ef87d42e5 (diff) | |
download | usdx-9a681dac366ee04fadc70a8b1f6739c37a6bf365.tar.gz usdx-9a681dac366ee04fadc70a8b1f6739c37a6bf365.tar.xz usdx-9a681dac366ee04fadc70a8b1f6739c37a6bf365.zip |
Removed unused Format-parameter in LoadTexture() and Add...()
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@990 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'Game/Code/Screens/UScreenSingModi.pas')
-rw-r--r-- | Game/Code/Screens/UScreenSingModi.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Game/Code/Screens/UScreenSingModi.pas b/Game/Code/Screens/UScreenSingModi.pas index 9ce60864..2a3a64f5 100644 --- a/Game/Code/Screens/UScreenSingModi.pas +++ b/Game/Code/Screens/UScreenSingModi.pas @@ -647,7 +647,7 @@ begin else Ext := 'BMP'; - Tex := Texture.LoadTexture(PChar(TexName), PChar(Ext), UTexture.TTextureType(Typ), 0); + Tex := Texture.LoadTexture(TexName, UTexture.TTextureType(Typ), 0); Result.TexNum := Tex.TexNum; Result.W := Tex.W; |