--- a/hedgewars/uStore.pas Sun Sep 26 03:41:30 2010 +0200
+++ b/hedgewars/uStore.pas Sun Sep 26 17:02:44 2010 +0200
@@ -1092,17 +1092,7 @@
var tmpsurf: PSDL_Surface;
s: shortstring;
begin
- WriteToConsole(msgLoading + filename + '.png [flags:');
- if imageFlags = ifNone then
- WriteToConsole(' None')
- else
- begin
- if (imageFlags and ifAlpha) <> 0 then WriteToConsole(' Alpha');
- if (imageFlags and ifCritical) <> 0 then WriteToConsole(' Critical');
- if (imageFlags and ifTransparent) <> 0 then WriteToConsole(' Transparent');
- if (imageFlags and ifIgnoreCaps) <> 0 then WriteToConsole(' IgnoreCaps');
- end;
- WriteToConsole('] ');
+ WriteToConsole(msgLoading + filename + '.png [flags: ' + inttostr(imageFlags) + ']');
s:= filename + '.png';
tmpsurf:= IMG_Load(Str2PChar(s));