diff options
author | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-10-18 17:14:52 +0000 |
---|---|---|
committer | tobigun <tobigun@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2008-10-18 17:14:52 +0000 |
commit | 68667a9069a53b2d427661d15fc1a6c3eeca110f (patch) | |
tree | 0fda7855afaed66297929a91e162d7842cd896cc | |
parent | 4d14de6c0a2ddcc6729afae5d446e653b8692d83 (diff) | |
download | usdx-68667a9069a53b2d427661d15fc1a6c3eeca110f.tar.gz usdx-68667a9069a53b2d427661d15fc1a6c3eeca110f.tar.xz usdx-68667a9069a53b2d427661d15fc1a6c3eeca110f.zip |
Error-log entry slightly changed for TTextureUnit.LoadTexture (" added)
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1451 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | src/base/UTexture.pas | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base/UTexture.pas b/src/base/UTexture.pas index 83ff8239..0f0117ff 100644 --- a/src/base/UTexture.pas +++ b/src/base/UTexture.pas @@ -263,7 +263,7 @@ begin TexSurface := LoadImage(Identifier); if not assigned(TexSurface) then begin - Log.LogError('Could not load texture: "' + Identifier +' '+ TextureTypeToStr(Typ) +'"', + Log.LogError('Could not load texture: "' + Identifier +'" with type "'+ TextureTypeToStr(Typ) +'"', 'TTextureUnit.LoadTexture'); Exit; end; |