~ubuntu-branches/ubuntu/saucy/sgt-puzzles/saucy

« back to all changes in this revision

Viewing changes to filling.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings
  • Date: 2011-07-11 03:56:55 UTC
  • mfrom: (1.2.10 upstream)
  • mto: This revision was merged to the branch mainline in revision 19.
  • Revision ID: james.westby@ubuntu.com-20110711035655-qjakg0h7wv99tmu9
* New upstream version:
  - Remove unused-but-set variables - closes: #625425
  - Avoid infinite loop in Loopy at Easy level
  - Add Penrose tilings to Loopy
* Update German translation, thanks to Helge Kreutzmann
* Do not compile with -Werror

Show diffs side-by-side

added added

removed removed

Lines of Context:
1617
1617
    return 0.0F;
1618
1618
}
1619
1619
 
 
1620
static int game_status(game_state *state)
 
1621
{
 
1622
    return state->completed ? +1 : 0;
 
1623
}
 
1624
 
1620
1625
static int game_timing_state(game_state *state, game_ui *ui)
1621
1626
{
1622
1627
    return TRUE;
1715
1720
    game_redraw,
1716
1721
    game_anim_length,
1717
1722
    game_flash_length,
 
1723
    game_status,
1718
1724
    TRUE, FALSE, game_print_size, game_print,
1719
1725
    FALSE,                                 /* wants_statusbar */
1720
1726
    FALSE, game_timing_state,