# HG changeset patch # User Guido Berhoerster # Date 1414162842 -7200 # Node ID 868670fcc17b4c7fc3aeab53f77f8536422579f8 # Parent 08c750f7c4a77047925e97ce13e610d9e4a6112b Fix status type status is used as an int, due to this bug the GAME_OVER_CLEARED flag was lost and the bonuses for a cleared board was not applied. diff -r 08c750f7c4a7 -r 868670fcc17b board.h --- a/board.h Tue Apr 15 00:57:21 2014 +0200 +++ b/board.h Fri Oct 24 17:00:42 2014 +0200 @@ -38,7 +38,7 @@ int width; short colors; int32_t score; - bool status; + int status; }; struct board_ctx * board_create(int, int, short);