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

« back to all changes in this revision

Viewing changes to sixteen.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings
  • Date: 2011-07-11 03:56:55 UTC
  • mfrom: (1.1.13 upstream) (3.1.14 sid)
  • Revision ID: james.westby@ubuntu.com-20110711035655-bfr08qpm3dm3unnq
Tags: 9179-1
* 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:
1073
1073
        return 0.0F;
1074
1074
}
1075
1075
 
 
1076
static int game_status(game_state *state)
 
1077
{
 
1078
    return state->completed ? +1 : 0;
 
1079
}
 
1080
 
1076
1081
static int game_timing_state(game_state *state, game_ui *ui)
1077
1082
{
1078
1083
    return TRUE;
1121
1126
    game_redraw,
1122
1127
    game_anim_length,
1123
1128
    game_flash_length,
 
1129
    game_status,
1124
1130
    FALSE, FALSE, game_print_size, game_print,
1125
1131
    TRUE,                              /* wants_statusbar */
1126
1132
    FALSE, game_timing_state,