diff options
| author | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-02 16:03:30 +0000 |
|---|---|---|
| committer | Bertrik Sikken <bertrik@sikken.nl> | 2010-01-02 16:03:30 +0000 |
| commit | 799a0a5cd4001954d8e0e855af4236e1f7b0898d (patch) | |
| tree | c9d94e6fd588e1cfd2a97729ad05b486f6f30fe5 /apps/plugins/blackjack.c | |
| parent | d03768bc14da12f940f01993bb6df1ffd8935fe7 (diff) | |
| download | rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.zip rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.gz rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.bz2 rockbox-799a0a5cd4001954d8e0e855af4236e1f7b0898d.tar.xz | |
Simplify some boolean expressions that compare directly against 'true'
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24144 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/blackjack.c')
| -rw-r--r-- | apps/plugins/blackjack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c index 9096673..a7876c6 100644 --- a/apps/plugins/blackjack.c +++ b/apps/plugins/blackjack.c @@ -701,7 +701,7 @@ static void update_total(struct game_context* bj) { static signed int check_for_aces(struct card temp_cards[], unsigned int size) { unsigned int i; for(i = 0; i < size; i++) { - if (temp_cards[i].is_soft_ace == true) + if (temp_cards[i].is_soft_ace) return i; } return -1; |