~ubuntu-branches/ubuntu/karmic/gnome-games/karmic-proposed

« back to all changes in this revision

Viewing changes to gnibbles/gnibbles.c

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2009-04-14 12:31:51 UTC
  • mfrom: (1.1.65)
  • Revision ID: package-import@ubuntu.com-20090414123151-v18w2slnw6nx1f4d
Tags: 1:2.26.1-0ubuntu1
New upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
590
590
gnibbles_keypress_worms (guint keyval)
591
591
{
592
592
  gint i;
 
593
  gint numworms = ggz_network_mode ? 1 : properties->numworms;
593
594
 
594
 
  for (i = 0; i < properties->numworms; i++)
 
595
  for (i = 0; i < numworms; i++)
595
596
    if (gnibbles_worm_handle_keypress (worms[i], keyval)) {
596
597
      return TRUE;
597
598
    }