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

« back to all changes in this revision

Viewing changes to slant.c

  • Committer: Bazaar Package Importer
  • Author(s): Ben Hutchings
  • Date: 2011-07-11 03:56:55 UTC
  • mfrom: (1.2.10 upstream)
  • Revision ID: james.westby@ubuntu.com-20110711035655-qjakg0h7wv99tmu9
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:
2075
2075
    return 0.0F;
2076
2076
}
2077
2077
 
 
2078
static int game_status(game_state *state)
 
2079
{
 
2080
    return state->completed ? +1 : 0;
 
2081
}
 
2082
 
2078
2083
static int game_timing_state(game_state *state, game_ui *ui)
2079
2084
{
2080
2085
    return TRUE;
2186
2191
    game_redraw,
2187
2192
    game_anim_length,
2188
2193
    game_flash_length,
 
2194
    game_status,
2189
2195
    TRUE, FALSE, game_print_size, game_print,
2190
2196
    FALSE,                             /* wants_statusbar */
2191
2197
    FALSE, game_timing_state,