diff options
Diffstat (limited to 'src/base')
-rw-r--r-- | src/base/UPath.pas | 3 | ||||
-rw-r--r-- | src/base/USkins.pas | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/src/base/UPath.pas b/src/base/UPath.pas index 77ccd65d..6708262f 100644 --- a/src/base/UPath.pas +++ b/src/base/UPath.pas @@ -36,6 +36,7 @@ interface uses SysUtils, Classes, + TntSysUtils, IniFiles, {$IFDEF MSWINDOWS} TntClasses, @@ -667,7 +668,7 @@ begin if (IsNativeUTF8()) then Result := fName else - Result := Utf8ToAnsi(fName); + Result := Utf8ToAnsi(fName); //basisbit hackyhack - rteverted already end; function TPathImpl.GetDrive(): IPath; diff --git a/src/base/USkins.pas b/src/base/USkins.pas index a909b081..6d8c2ebf 100644 --- a/src/base/USkins.pas +++ b/src/base/USkins.pas @@ -187,7 +187,7 @@ begin if (TextureName <> '') and (Result.IsSet) then begin //Log.LogError('', '-----------------------------------------'); - //Log.LogError(TextureName+' - '+ Result, 'TSkin.GetTextureFileName'); + Log.LogError('Was not able to retrieve Texture for ' + TextureName + ' - ' + Result.ToNative, 'TSkin.GetTextureFileName'); end; end; |