Browse Source

Cleanup naming

master
cancel 6 years ago
parent
commit
9e92e0b0db
  1. 4
      tui_main.c

4
tui_main.c

@ -195,7 +195,7 @@ void draw_ui_bar(WINDOW* win, int win_y, int win_x, const char* filename,
wclrtoeol(win); wclrtoeol(win);
} }
void draw_debug_field(WINDOW* win, int term_h, int term_w, int pos_y, int pos_x, void draw_field(WINDOW* win, int term_h, int term_w, int pos_y, int pos_x,
Glyph const* gbuffer, Mark const* mbuffer, Usz field_h, Glyph const* gbuffer, Mark const* mbuffer, Usz field_h,
Usz field_w, Usz ruler_spacing_y, Usz ruler_spacing_x) { Usz field_w, Usz ruler_spacing_y, Usz ruler_spacing_x) {
enum { Bufcount = 4096 }; enum { Bufcount = 4096 };
@ -338,7 +338,7 @@ int main(int argc, char** argv) {
assert(term_height >= 0 && term_width >= 0); assert(term_height >= 0 && term_width >= 0);
(void)term_height; (void)term_height;
(void)term_width; (void)term_width;
draw_debug_field(stdscr, term_height, term_width, 0, 0, field.buffer, draw_field(stdscr, term_height, term_width, 0, 0, field.buffer,
markmap_r.buffer, field.height, field.width, 8, 8); markmap_r.buffer, field.height, field.width, 8, 8);
for (int y = field.height; y < term_height - 1; ++y) { for (int y = field.height; y < term_height - 1; ++y) {
wmove(stdscr, y, 0); wmove(stdscr, y, 0);

Loading…
Cancel
Save