mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
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:
parent
f9a2a7699b
commit
bfa94aad7e
1 changed files with 2 additions and 2 deletions
|
|
@ -741,9 +741,9 @@ unsigned char rem;
|
||||||
/* upper visible card from the remains' stack */
|
/* upper visible card from the remains' stack */
|
||||||
unsigned char cur_rem;
|
unsigned char cur_rem;
|
||||||
/* number of cards drawn from the remains stack - 1 */
|
/* 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 */
|
/* number of cards per draw of the remains' stack */
|
||||||
char cards_per_draw;
|
signed char cards_per_draw;
|
||||||
|
|
||||||
/* the 7 game columns */
|
/* the 7 game columns */
|
||||||
unsigned char cols[COL_NUM];
|
unsigned char cols[COL_NUM];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue