Search
lxdream.org :: lxdream/src/mem.c :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/mem.c
changeset 1075:1a21750d300c
prev1067:d3c00ffccfcd
next1167:2cc6c50d0dd2
author nkeynes
date Fri Oct 29 07:52:45 2010 +1000 (13 years ago)
permissions -rw-r--r--
last change Fix triangle extraction when the tile entry is a triangle but the polygon is
actually a strip (lead to extracting too many triangles)
file annotate diff log raw
1.1 --- a/src/mem.c Sun Jul 05 13:54:48 2009 +1000
1.2 +++ b/src/mem.c Fri Oct 29 07:52:45 2010 +1000
1.3 @@ -277,7 +277,7 @@
1.4 total += len;
1.5 }
1.6 fclose( f );
1.7 - INFO( "Saved %d of %d bytes to %08X", total, length, start );
1.8 + DEBUG( "Saved %d of %d bytes to %08X", total, length, start );
1.9 return 0;
1.10 }
1.11
1.12 @@ -311,7 +311,7 @@
1.13 total += len;
1.14 }
1.15 fclose( f );
1.16 - INFO( "Loaded %d of %d bytes to %08X", total, length, start );
1.17 + DEBUG( "Loaded %d of %d bytes to %08X", total, length, start );
1.18 return 0;
1.19 }
1.20
.