From: Holger Schemel Date: Wed, 14 Oct 2015 19:35:06 +0000 (+0200) Subject: added frame counter to playfield debugging output X-Git-Tag: 4.0.0.0-rc1~145 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=129d7d8e9a4b6a3ff0586e209a40317fc68fe6db added frame counter to playfield debugging output --- diff --git a/src/tools.c b/src/tools.c index 9b903d35..84e79b3a 100644 --- a/src/tools.c +++ b/src/tools.c @@ -227,7 +227,7 @@ void DumpTile(int x, int y) printf(" CustomValue: %d\n", CustomValue[x][y]); printf(" GfxElement: %d\n", GfxElement[x][y]); printf(" GfxAction: %d\n", GfxAction[x][y]); - printf(" GfxFrame: %d\n", GfxFrame[x][y]); + printf(" GfxFrame: %d [%d]\n", GfxFrame[x][y], FrameCounter); printf("\n"); }