about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--080display.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/080display.cc b/080display.cc
index 8e890013..c05a4f99 100644
--- a/080display.cc
+++ b/080display.cc
@@ -1,4 +1,6 @@
-//: Take charge of the text-mode display and console.
+//: Take raw control of the text-mode display and console, putting it in
+//: 'console' mode rather than the usual automatically-scrolling 'typewriter'
+//: mode.
 
 //:: Display management
 
@@ -22,9 +24,9 @@ case OPEN_CONSOLE: {
   int height = tb_height();
   if (width > 222 || height > 222) tb_shutdown();
   if (width > 222)
-    raise << "sorry, mu doesn't support windows wider than 222 characters. Please resize your window.\n" << end();
+    raise << "sorry, mu doesn't support windows wider than 222 characters in console mode. Please resize your window.\n" << end();
   if (height > 222)
-    raise << "sorry, mu doesn't support windows taller than 222 characters. Please resize your window.\n" << end();
+    raise << "sorry, mu doesn't support windows taller than 222 characters in console mode. Please resize your window.\n" << end();
   break;
 }