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

« back to all changes in this revision

Viewing changes to fifteen.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:
830
830
        return 0.0F;
831
831
}
832
832
 
 
833
static int game_status(game_state *state)
 
834
{
 
835
    return state->completed ? +1 : 0;
 
836
}
 
837
 
833
838
static int game_timing_state(game_state *state, game_ui *ui)
834
839
{
835
840
    return TRUE;
878
883
    game_redraw,
879
884
    game_anim_length,
880
885
    game_flash_length,
 
886
    game_status,
881
887
    FALSE, FALSE, game_print_size, game_print,
882
888
    TRUE,                              /* wants_statusbar */
883
889
    FALSE, game_timing_state,