about summary refs log tree commit diff stats
path: root/src/windows.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-12-02 02:21:59 +0000
committerJames Booth <boothj5@gmail.com>2012-12-02 02:21:59 +0000
commit9d700f3f1f37703450b537cb0054d89ad2fd2f4b (patch)
treeac6e0bc7479442f83abeb603f2b7d9ef72f6303e /src/windows.c
parent6826a66f8506d763d30bcf8e54147efbf5e8050c (diff)
downloadprofani-tty-9d700f3f1f37703450b537cb0054d89ad2fd2f4b.tar.gz
Organised config file
Diffstat (limited to 'src/windows.c')
-rw-r--r--src/windows.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/windows.c b/src/windows.c
index 93e6980e..3563f4ca 100644
--- a/src/windows.c
+++ b/src/windows.c
@@ -1127,10 +1127,10 @@ cons_show_ui_prefs(void)
     else
         cons_show("Show typing (/intype)        : OFF");
 
-    if (prefs_get_showsplash())
-        cons_show("Splash screen (/showsplash)  : ON");
+    if (prefs_get_splash())
+        cons_show("Splash screen (/splash)      : ON");
     else
-        cons_show("Splash screen (/showsplash)  : OFF");
+        cons_show("Splash screen (/splash)      : OFF");
 
     if (prefs_get_history())
         cons_show("Chat history (/history)      : ON");
@@ -1214,7 +1214,7 @@ cons_show_presence_prefs(void)
         cons_show("Autoaway (/autoaway mode)            : %s", prefs_get_autoaway_mode());
     }
 
-    cons_show("Autoaway time (/autoaway time)       : %d minutes", prefs_get_autoaway_time());
+    cons_show("Autoaway minutes (/autoaway time)    : %d minutes", prefs_get_autoaway_time());
 
     if ((prefs_get_autoaway_message() == NULL) ||
             (strcmp(prefs_get_autoaway_message(), "") == 0)) {
@@ -1491,7 +1491,7 @@ cons_about(void)
     int rows, cols;
     getmaxyx(stdscr, rows, cols);
 
-    if (prefs_get_showsplash()) {
+    if (prefs_get_splash()) {
         _cons_splash_logo();
     } else {
         _win_show_time(console->win);