hedgewars/uStore.pas
changeset 2578 ec8e69b23097
parent 2575 d06e0e829828
child 2580 aeccc8f51d3f
--- 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;