about summary refs log tree commit diff stats
path: root/termbox/termbox.h
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-05-04 23:13:30 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-05-04 23:20:37 -0700
commit769a68cf1df678270f28c55a39f0aeca964aaf25 (patch)
tree4a6c826b6208aa70628c825f070379c1f941cbb2 /termbox/termbox.h
parentb8263692a6f2865482abbc21eae5a4e5163ab725 (diff)
downloadmu-769a68cf1df678270f28c55a39f0aeca964aaf25.tar.gz
3842
Always start with an untouched screen that can scroll on printing "\r\n".
We can still clear the screen as needed.

Also drop support for hiding the cursor.
Diffstat (limited to 'termbox/termbox.h')
-rw-r--r--termbox/termbox.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/termbox/termbox.h b/termbox/termbox.h
index a86bc6ca..97e3f524 100644
--- a/termbox/termbox.h
+++ b/termbox/termbox.h
@@ -44,9 +44,6 @@ void tb_set_clear_attributes(uint16_t fg, uint16_t bg);
 
 /* Move the cursor. Upper-left character is (0, 0). */
 void tb_set_cursor(int cx, int cy);
-/* To hide the cursor, call tb_set_cursor(TB_HIDE_CURSOR, TB_HIDE_CURSOR).
- * Cursor starts out hidden. */
-#define TB_HIDE_CURSOR -1
 
 /* Modify a specific cell of the screen. */
 void tb_change_cell(int x, int y, uint32_t ch, uint16_t fg, uint16_t bg);