mudgangster

Log | Files | Refs

commit d21f34edbf865c9625ade064839e7dec2ab1cf8e
parent c473ef11ec4b758f7ddaf0b64c8ebfac2d258abd
Author: Michael Savage <mikejsavage@gmail.com>
Date:   Mon,  3 Sep 2018 18:10:49 +0300

Remove TODOs

Diffstat:
src/textbox.cc | 2+-
src/textbox.h | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/textbox.cc b/src/textbox.cc @@ -154,5 +154,5 @@ void textbox_page_down( TextBox * tb ) { void textbox_page_up( TextBox * tb ) { size_t rows = tb->height / ( Style.font.height + SPACING ); - textbox_scroll( tb, rows - 1 ); // TODO + textbox_scroll( tb, rows - 1 ); } diff --git a/src/textbox.h b/src/textbox.h @@ -18,7 +18,7 @@ enum Colour { }; constexpr size_t MAX_LINE_LENGTH = 2048; -constexpr size_t SCROLLBACK_SIZE = 1 << 16; // TODO +constexpr size_t SCROLLBACK_SIZE = 1 << 16; struct Glyph { char ch;