summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/blackjack.c2
-rw-r--r--apps/plugins/random_folder_advance_config.c2
-rw-r--r--apps/plugins/starfield.c2
-rw-r--r--apps/plugins/stats.c4
4 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/blackjack.c b/apps/plugins/blackjack.c
index 9096673bba..a7876c6e12 100644
--- a/apps/plugins/blackjack.c
+++ b/apps/plugins/blackjack.c
@@ -701,7 +701,7 @@ static void update_total(struct game_context* bj) {
701static signed int check_for_aces(struct card temp_cards[], unsigned int size) { 701static signed int check_for_aces(struct card temp_cards[], unsigned int size) {
702 unsigned int i; 702 unsigned int i;
703 for(i = 0; i < size; i++) { 703 for(i = 0; i < size; i++) {
704 if (temp_cards[i].is_soft_ace == true) 704 if (temp_cards[i].is_soft_ace)
705 return i; 705 return i;
706 } 706 }
707 return -1; 707 return -1;
diff --git a/apps/plugins/random_folder_advance_config.c b/apps/plugins/random_folder_advance_config.c
index 36b9ebfcbf..5f837980d3 100644
--- a/apps/plugins/random_folder_advance_config.c
+++ b/apps/plugins/random_folder_advance_config.c
@@ -70,7 +70,7 @@ void traversedir(char* location, char* name)
70 if (dir) { 70 if (dir) {
71 entry = rb->readdir(dir); 71 entry = rb->readdir(dir);
72 while (entry) { 72 while (entry) {
73 if (abort == true) 73 if (abort)
74 break; 74 break;
75 /* Skip .. and . */ 75 /* Skip .. and . */
76 if (entry->d_name[0] == '.') 76 if (entry->d_name[0] == '.')
diff --git a/apps/plugins/starfield.c b/apps/plugins/starfield.c
index 0da3305a6f..01d0acfb4a 100644
--- a/apps/plugins/starfield.c
+++ b/apps/plugins/starfield.c
@@ -389,7 +389,7 @@ int plugin_main(void)
389 ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F))) 389 ((CONFIG_CODEC == MAS3587F) || (CONFIG_CODEC == MAS3539F)))
390 390
391 /* This will make the stars pulse to the music */ 391 /* This will make the stars pulse to the music */
392 if(pulse==true){ 392 if(pulse){
393 393
394 /* Get the peaks. ( Borrowed from vu_meter ) */ 394 /* Get the peaks. ( Borrowed from vu_meter ) */
395#if (CONFIG_CODEC == SWCODEC) 395#if (CONFIG_CODEC == SWCODEC)
diff --git a/apps/plugins/stats.c b/apps/plugins/stats.c
index d3cf9dc5a7..b928c0c4db 100644
--- a/apps/plugins/stats.c
+++ b/apps/plugins/stats.c
@@ -164,7 +164,7 @@ void traversedir(char* location, char* name)
164 if (dir) { 164 if (dir) {
165 entry = rb->readdir(dir); 165 entry = rb->readdir(dir);
166 while (entry) { 166 while (entry) {
167 if (abort == true) 167 if (abort)
168 break; 168 break;
169 /* Skip .. and . */ 169 /* Skip .. and . */
170 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, "..")) 170 if (rb->strcmp(entry->d_name, ".") && rb->strcmp(entry->d_name, ".."))
@@ -227,7 +227,7 @@ enum plugin_status plugin_start(const void* parameter)
227 lasttick = *rb->current_tick; 227 lasttick = *rb->current_tick;
228 228
229 traversedir("", ""); 229 traversedir("", "");
230 if (abort == true) { 230 if (abort) {
231 rb->splash(HZ, "Aborted"); 231 rb->splash(HZ, "Aborted");
232 return PLUGIN_OK; 232 return PLUGIN_OK;
233 } 233 }