Moved comment closer to the relevant code

This commit is contained in:
Bruce Hill 2019-03-18 18:20:32 -07:00
parent e9067c9a7c
commit 357f958cd1

View File

@ -67,10 +67,10 @@ int main(int argc, char **argv) {
tb_select_input_mode(TB_INPUT_MOUSE);
tb_select_output_mode(TB_OUTPUT_256);
// Cells are 2 characters wide so they look square
char *buffers[2];
int flipflop = 0;
resize:
// Cells are 2 characters wide so they look square
W = tb_width()/2, H = tb_height();
buffers[0] = calloc(W*H, sizeof(char));
buffers[1] = calloc(W*H, sizeof(char));