diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-11-01 18:12:38 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-11-01 18:12:38 +0000 |
commit | 5cb3f7a9506ae342d177640b628e9c4248b3e0eb (patch) | |
tree | d7f72061323c2f30b0149d4f48027bb971c5392b /games/gtkballs | |
parent | 37b91421ca21d1407b3fe8e1de5c52c8cbac4387 (diff) | |
download | ports-5cb3f7a9506ae342d177640b628e9c4248b3e0eb.tar.gz ports-5cb3f7a9506ae342d177640b628e9c4248b3e0eb.zip |
Notes
Diffstat (limited to 'games/gtkballs')
-rw-r--r-- | games/gtkballs/files/patch-src_game.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/games/gtkballs/files/patch-src_game.c b/games/gtkballs/files/patch-src_game.c new file mode 100644 index 000000000000..fc5585c0b2dd --- /dev/null +++ b/games/gtkballs/files/patch-src_game.c @@ -0,0 +1,12 @@ +--- src/game.c.orig Wed Oct 6 20:06:46 2004 ++++ src/game.c Wed Oct 27 02:10:30 2004 +@@ -495,8 +495,8 @@ + lock_actions(1); + draw_board(); + for(animtime = 0, i = 0; i < animcadres;) { +- gettimeofday(&tvs, NULL); + gint isav = i; ++ gettimeofday(&tvs, NULL); + for(; animtime == animarray[i].time && i < animcadres; i++) { + draw_ball(animarray[i].color, animarray[i].x, animarray[i].y, 0, animarray[i].phase + 1); + _board_destroys[animarray[i].y * rules_get_width() + animarray[i].x] = animarray[i].phase + 1; |