about summary refs log tree commit diff stats
path: root/080display.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-09 16:33:30 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-09 16:33:30 -0700
commita97df2ad5dc504fb090b54302fdc41f010d887bf (patch)
treee4afb842599b1dc845c5ddf42c68efdd6b5cc3d5 /080display.cc
parent4d646564692eee2d521d1654a50f68114d3ab825 (diff)
downloadmu-a97df2ad5dc504fb090b54302fdc41f010d887bf.tar.gz
3162
Diffstat (limited to '080display.cc')
-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;
 }