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

« back to all changes in this revision

Viewing changes to aisleriot/game.c

  • Committer: Package Import Robot
  • Author(s): Daniel Holbach
  • Date: 2007-09-18 10:44:15 UTC
  • mfrom: (1.1.38)
  • Revision ID: package-import@ubuntu.com-20070918104415-1s12dio3hrgpo48w
Tags: 1:2.20.0-0ubuntu1
* New upstream release:
  - Aisleriot:
    - Fix timer suspend on window iconification; and fix the corrupted
      statistics on load.
    - Revert the spider options order in menu.
  - Gnometris: pre-filled rows, and density of blocks in a pre-filled row 
    works again
  - Nibbles: Add missing includes
  - Robots: Add prototype for load_keys() to silence warning
  - GGZ: Add included ggzdmod to build path
* debian/patches/99_autoconf.patch: updated.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *  You should have received a copy of the GNU General Public License
16
16
 *  along with this program; if not, write to the Free Software
17
17
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
 
 *
19
 
 *  $Id$
20
18
 */
21
19
 
22
20
#include "config.h"
1436
1434
  if (paused == game->paused)
1437
1435
    return;
1438
1436
 
1439
 
  paused = game->paused;
 
1437
  game->paused = paused;
1440
1438
 
1441
1439
  /* (Re)store the start time */
1442
1440
  game->start_time = time (NULL) - game->start_time;