aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c22
1 files changed, 8 insertions, 14 deletions
diff --git a/src/io.c b/src/io.c
index ded7889..2067dd0 100644
--- a/src/io.c
+++ b/src/io.c
@@ -988,23 +988,17 @@ io_check_data_files (void)
/* Draw the startup screen */
void
-io_startup_screen (unsigned show_dialogs, int no_data_file)
+io_startup_screen (int no_data_file)
{
- const char *welcome_mesg =
- _("Welcome to Calcurse. Missing data files were created.");
- const char *data_mesg = _("Data files found. Data will be loaded now.");
const char *enter = _("Press [ENTER] to continue");
- if (no_data_file != 0)
- {
- status_mesg (welcome_mesg, enter);
- wgetch (win[STA].p);
- }
- else if (show_dialogs)
- {
- status_mesg (data_mesg, enter);
- wgetch (win[STA].p);
- }
+ if (no_data_file)
+ status_mesg (_("Data files found. Data will be loaded now."), enter);
+ else
+ status_mesg (_("Welcome to Calcurse. Missing data files were created."),
+ enter);
+
+ wgetch (win[STA].p);
}
/* Export calcurse data. */