hedgewars/uStore.pas
changeset 2600 7b21daf84933
parent 2599 c7153d2348f3
child 2601 21ed7cec1fa2
--- a/hedgewars/uStore.pas	Thu Nov 05 16:23:09 2009 +0000
+++ b/hedgewars/uStore.pas	Thu Nov 05 19:50:16 2009 +0000
@@ -1007,13 +1007,13 @@
 			if ((tmpsurf^.w > MaxTextureSize) or (tmpsurf^.h > MaxTextureSize)) then
 			begin
 				SDL_FreeSurface(tmpsurf);
-				AddFileLog('Image too big, trying to load lowres version: ' + s);
+				WriteLnToConsole('Image too big, trying to load lowres version: ' + s);
 				tmpsurf:= IMG_Load(Str2PChar(s))
 			end;
 		end
 		else
 		begin
-			AddFileLog('Image not found, trying to load lowres version: ' + s);
+			WriteLnToConsole('Image not found, trying to load lowres version: ' + s);
 			tmpsurf:= IMG_Load(Str2PChar(s))
 		end;
 	end;