summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/zxbox')
-rw-r--r--apps/plugins/zxbox/interf.c4
-rw-r--r--apps/plugins/zxbox/snapshot.c2
-rw-r--r--apps/plugins/zxbox/spmain.c6
-rw-r--r--apps/plugins/zxbox/zxbox.c2
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/zxbox/interf.c b/apps/plugins/zxbox/interf.c
index 8e39e35d39..7f37262140 100644
--- a/apps/plugins/zxbox/interf.c
+++ b/apps/plugins/zxbox/interf.c
@@ -95,7 +95,7 @@ char *spif_get_tape_fileinfo(int *startp, int *nump)
95void put_msg(const char *msg) 95void put_msg(const char *msg)
96{ 96{
97#ifndef USE_GRAY 97#ifndef USE_GRAY
98 rb->splash (HZ/2,true , msg ); 98 rb->splash (HZ/2, msg );
99#else 99#else
100 LOGF(msg); 100 LOGF(msg);
101 (void)msg; 101 (void)msg;
@@ -106,7 +106,7 @@ void put_msg(const char *msg)
106void put_tmp_msg(const char *msg) 106void put_tmp_msg(const char *msg)
107{ 107{
108#ifndef USE_GRAY 108#ifndef USE_GRAY
109 rb->splash (HZ/10,true , msg ); 109 rb->splash (HZ/10, msg );
110#else 110#else
111 LOGF(msg); 111 LOGF(msg);
112 (void)msg; 112 (void)msg;
diff --git a/apps/plugins/zxbox/snapshot.c b/apps/plugins/zxbox/snapshot.c
index d89e533d9e..5528b710c2 100644
--- a/apps/plugins/zxbox/snapshot.c
+++ b/apps/plugins/zxbox/snapshot.c
@@ -651,7 +651,7 @@ void load_snapshot_file_type(char *name, int type)
651 snsh = rb->open(filenamebuf, O_RDONLY); 651 snsh = rb->open(filenamebuf, O_RDONLY);
652 if(snsh < 0) { 652 if(snsh < 0) {
653#ifndef USE_GRAY 653#ifndef USE_GRAY
654 rb->splash(HZ,true, "Could not open snapshot file `%s'",filenamebuf); 654 rb->splash(HZ, "Could not open snapshot file `%s'",filenamebuf);
655#endif 655#endif
656 return; 656 return;
657 } 657 }
diff --git a/apps/plugins/zxbox/spmain.c b/apps/plugins/zxbox/spmain.c
index 20d806eef3..036e28a240 100644
--- a/apps/plugins/zxbox/spmain.c
+++ b/apps/plugins/zxbox/spmain.c
@@ -297,7 +297,7 @@ static void options_menu(void){
297 no_yes, 2, NULL); 297 no_yes, 2, NULL);
298 if (new_setting != settings.invert_colors ) 298 if (new_setting != settings.invert_colors )
299 settings.invert_colors=new_setting; 299 settings.invert_colors=new_setting;
300 rb->splash(HZ, true , "Restart to see effect"); 300 rb->splash(HZ, "Restart to see effect");
301 break; 301 break;
302 case 3: 302 case 3:
303 new_setting = settings.frameskip; 303 new_setting = settings.frameskip;
@@ -467,7 +467,7 @@ static void run_singlemode(void)
467#ifdef USE_GRAY 467#ifdef USE_GRAY
468 gray_show(false); 468 gray_show(false);
469#endif 469#endif
470 rb->splash(0,true,"Saving settings..."); 470 rb->splash(0, "Saving settings...");
471 configfile_save(GLOBALCFG, config,sizeof(config)/sizeof(*config),SETTINGS_VERSION); 471 configfile_save(GLOBALCFG, config,sizeof(config)/sizeof(*config),SETTINGS_VERSION);
472 } 472 }
473 473
@@ -531,7 +531,7 @@ static void init_load(void *parameter)
531 check_params (parameter); 531 check_params (parameter);
532 if(spcf_init_snapshot != NULL) { 532 if(spcf_init_snapshot != NULL) {
533#ifndef USE_GRAY 533#ifndef USE_GRAY
534 rb->splash(HZ,true, "Loading snapshot '%s'", spcf_init_snapshot); 534 rb->splash(HZ, "Loading snapshot '%s'", spcf_init_snapshot);
535#endif 535#endif
536 536
537 load_snapshot_file_type(spcf_init_snapshot, spcf_init_snapshot_type); 537 load_snapshot_file_type(spcf_init_snapshot, spcf_init_snapshot_type);
diff --git a/apps/plugins/zxbox/zxbox.c b/apps/plugins/zxbox/zxbox.c
index 5901982004..b85dc01991 100644
--- a/apps/plugins/zxbox/zxbox.c
+++ b/apps/plugins/zxbox/zxbox.c
@@ -64,7 +64,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
64 64
65 rb = api; 65 rb = api;
66 rb->lcd_set_backdrop(NULL); 66 rb->lcd_set_backdrop(NULL);
67 rb->splash(HZ, true, "Welcome to ZXBox"); 67 rb->splash(HZ, "Welcome to ZXBox");
68 68
69 69
70 sp_init(); 70 sp_init();