[gnome-games/gnibbles-clutter] Forgot to comment out those lines,
- From: Guillaume Béland <guillaubel src gnome org>
- To: svn-commits-list gnome org
- Subject: [gnome-games/gnibbles-clutter] Forgot to comment out those lines,
- Date: Wed, 8 Jul 2009 20:44:03 +0000 (UTC)
commit 20a3695305f5dd3acbf9cef83119ff8307120df2
Author: Guillaume Beland <guillaubel svn gnome org>
Date: Wed Jul 8 14:42:44 2009 -0400
Forgot to comment out those lines,
gnibbles/worm-clutter.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/gnibbles/worm-clutter.c b/gnibbles/worm-clutter.c
index 3ded7cc..e8185c0 100644
--- a/gnibbles/worm-clutter.c
+++ b/gnibbles/worm-clutter.c
@@ -571,7 +571,7 @@ gnibbles_cworm_move_tail (GnibblesCWorm *worm)
properties->tilesize);
clutter_actor_set_position (CLUTTER_ACTOR (tail),
x + properties->tilesize, y);
- //level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
+ level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
worm->xtail++;
break;
case WORMDOWN:
@@ -580,21 +580,21 @@ gnibbles_cworm_move_tail (GnibblesCWorm *worm)
size);
clutter_actor_set_position (CLUTTER_ACTOR (tail),
x, y + properties->tilesize);
- //level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
+ level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
worm->ytail++;
break;
case WORMLEFT:
clutter_actor_set_size (CLUTTER_ACTOR (tail),
size,
properties->tilesize);
- //level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
+ level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
worm->xtail--;
break;
case WORMUP:
clutter_actor_set_size (CLUTTER_ACTOR (tail),
properties->tilesize,
size);
- //level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
+ level->walls[worm->xtail][worm->ytail] = EMPTYCHAR;
worm->ytail--;
break;
default:
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]