about summary refs log tree commit diff stats
path: root/070display.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-06-05 16:03:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-06-05 16:03:54 -0700
commit10a3b8cca2bc7b2d5871577ba260ad75c65672b4 (patch)
tree7c03594c0f38b180c91c6445b790225138727857 /070display.cc
parent70023f592fd18a7497341476789f6e13eb909953 (diff)
downloadmu-10a3b8cca2bc7b2d5871577ba260ad75c65672b4.tar.gz
1530 - switch to termbox's 256-color mode
Diffstat (limited to '070display.cc')
-rw-r--r--070display.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/070display.cc b/070display.cc
index a0c964c1..d8649695 100644
--- a/070display.cc
+++ b/070display.cc
@@ -54,7 +54,7 @@ Recipe_number["clear-line-on-display"] = CLEAR_LINE_ON_DISPLAY;
 case CLEAR_LINE_ON_DISPLAY: {
   long long int width = tb_width();
   for (long long int x = Display_column; x < width; ++x) {
-    tb_change_cell(x, Display_row, ' ', TB_WHITE, TB_DEFAULT);
+    tb_change_cell(x, Display_row, ' ', TB_WHITE, TB_BLACK);
   }
   tb_set_cursor(Display_column, Display_row);
   tb_present();
@@ -86,22 +86,22 @@ case PRINT_CHARACTER_TO_DISPLAY: {
   }
   if (c == '\b') {
     if (Display_column > 0) {
-      tb_change_cell(Display_column-1, Display_row, ' ', TB_WHITE, TB_DEFAULT);
+      tb_change_cell(Display_column-1, Display_row, ' ', TB_WHITE, TB_BLACK);
       --Display_column;
       tb_set_cursor(Display_column, Display_row);
       tb_present();
     }
     break;
   }
-  int color = TB_DEFAULT;
+  int color = TB_BLACK;
   if (SIZE(ingredients) > 1) {
     assert(scalar(ingredients.at(1)));
-    color = ingredients.at(1).at(0)+1/*skip default*/;
+    color = ingredients.at(1).at(0);
 //?     tb_shutdown(); //? 1
 //?     cerr << "AAA " << color << '\n'; //? 1
 //?     exit(1); //? 1
   }
-  tb_change_cell(Display_column, Display_row, c, color, TB_DEFAULT);
+  tb_change_cell(Display_column, Display_row, c, color, TB_BLACK);
   if (Display_column < width-1) {
     ++Display_column;
     tb_set_cursor(Display_column, Display_row);