diff options
author | Antoine Cellerier <dionoea@videolan.org> | 2006-09-10 20:39:46 +0000 |
---|---|---|
committer | Antoine Cellerier <dionoea@videolan.org> | 2006-09-10 20:39:46 +0000 |
commit | bfa94aad7e4ae9a13914ef73c118205667be8820 (patch) | |
tree | 5e54eb7ae0fa9cb57fc80d03cd286b40b6c6ebb3 /apps | |
parent | f9a2a7699b04e37b83f0d7042c013d31a1c024d8 (diff) |
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
Diffstat (limited to 'apps')
-rw-r--r-- | apps/plugins/solitaire.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c index c30bda9803..707d9b5c00 100644 --- a/apps/plugins/solitaire.c +++ b/apps/plugins/solitaire.c @@ -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]; |