--- a/hedgewars/uStore.pas Fri Oct 23 11:11:42 2009 +0000
+++ b/hedgewars/uStore.pas Fri Oct 23 11:12:01 2009 +0000
@@ -918,13 +918,13 @@
if ((tmpsurf^.w > MaxTextureSize) or (tmpsurf^.h > MaxTextureSize)) then
begin
SDL_FreeSurface(tmpsurf);
- WriteLnToConsole('Image too big, trying to load lowres version: ' + s);
+ AddFileLog('Image too big, trying to load lowres version: ' + s);
tmpsurf:= IMG_Load(Str2PChar(s))
end;
end
else
begin
- WriteLnToConsole('Image not found, trying to load lowres version: ' + s);
+ AddFileLog('Image not found, trying to load lowres version: ' + s);
tmpsurf:= IMG_Load(Str2PChar(s))
end;
end;