From 8b0b2b050b8e010b37f56ae71fd25e2862a63192 Mon Sep 17 00:00:00 2001 From: patty21 Date: Mon, 9 Jun 2003 17:41:07 +0000 Subject: [PATCH] gfx errors fixed --- src/bomb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bomb.c b/src/bomb.c index e303d27..130206a 100644 --- a/src/bomb.c +++ b/src/bomb.c @@ -42,7 +42,7 @@ draw_bomb (_bomb * bomb) draw_stone ((x>>8)+1, y>>8); draw_stone (x>>8, (y>>8)+1); draw_stone ((x>>8)+1, (y>>8)+1); - gfx_AddUpdateRect (dest.x = gfx.offset.x + (x >> 8) * gfx.block.x, + gfx_AddUpdateRect (gfx.offset.x + (x >> 8) * gfx.block.x, gfx.offset.y + (y >> 8) * gfx.block.y, dest.w*2, dest.h*2); } else {