diff -r 89740f927254 -r a3b86c1f63b4 hedgewars/uStore.pas --- a/hedgewars/uStore.pas Thu Nov 15 13:58:49 2012 +0400 +++ b/hedgewars/uStore.pas Thu Nov 15 16:46:46 2012 +0100 @@ -576,7 +576,7 @@ if ((imageFlags and ifIgnoreCaps) = 0) and ((tmpsurf^.w > MaxTextureSize) or (tmpsurf^.h > MaxTextureSize)) then begin SDL_FreeSurface(tmpsurf); - OutError(msgFailedSize, (imageFlags and ifCritical) <> 0); + OutError(msgFailedSize, ((not cOnlyStats) and ((imageFlags and ifCritical) <> 0))); // dummy surface to replace non-critical textures that failed to load due to their size LoadImage:= SDL_CreateRGBSurface(SDL_SWSURFACE, 2, 2, 32, RMask, GMask, BMask, AMask); exit;