From 93293709cae894ffcdd94a9f145420d9b910c3cb Mon Sep 17 00:00:00 2001 From: stpohle Date: Wed, 14 May 2003 04:59:16 +0000 Subject: [PATCH] bomb explosion isn't working right... --- src/bomb.c | 1 + src/field.c | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/bomb.c b/src/bomb.c index 0478552..2c2ed9b 100644 --- a/src/bomb.c +++ b/src/bomb.c @@ -289,6 +289,7 @@ explosion_check_field (int x, int y, int p, int b) bman.field[x][y].frame = 1; } draw_stone (x, y); + gfx_AddUpdateRect (x * gfx.block.x, y * gfx.block.y, gfx.block.x, gfx.block.y); } return bman.field[x][y].type; diff --git a/src/field.c b/src/field.c index a059361..4583452 100644 --- a/src/field.c +++ b/src/field.c @@ -1,4 +1,4 @@ -/* $Id: field.c,v 1.19 2003/05/13 21:53:40 patty21 Exp $ */ +/* $Id: field.c,v 1.20 2003/05/14 04:59:17 stpohle Exp $ */ /* field.c - procedures which are needed to control the field */ #include @@ -69,8 +69,6 @@ draw_stone (int x, int y) i = 1; // mark that there is already an explosion draw_fire (x, y, d, -1); } - - return; };