changeset 1264:aa6e8a24b94b

Oops, when did I break this? IFF ILBM reader should now work again.
author Matti Hamalainen <ccr@tnsp.org>
date Mon, 25 May 2015 12:58:02 +0300
parents dc9b20d77bc9
children 4e074b9b4789
files src/libgfx.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/libgfx.c	Thu May 21 13:41:38 2015 +0300
+++ b/src/libgfx.c	Mon May 25 12:58:02 2015 +0300
@@ -1232,10 +1232,10 @@
     {
         dmError(DMERR_FREAD,
             "ILBM: Could not read IFF chunk header.\n");
-        return TRUE;
+        return FALSE;
     }
     else
-        return FALSE;
+        return TRUE;
 }
 
 static char * dmGetIFFChunkID(DMIFFChunk *chunk)