Looks like we need to explicitly say that we need signed chars.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10926 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Antoine Cellerier 2006-09-10 20:39:46 +00:00
parent f9a2a7699b
commit bfa94aad7e

View file

@ -741,9 +741,9 @@ unsigned char rem;
/* upper visible card from the remains' stack */
unsigned char cur_rem;
/* number of cards drawn from the remains stack - 1 */
char count_rem;
signed char count_rem;
/* number of cards per draw of the remains' stack */
char cards_per_draw;
signed char cards_per_draw;
/* the 7 game columns */
unsigned char cols[COL_NUM];