aboutsummaryrefslogtreecommitdiff
path: root/life.cc
diff options
context:
space:
mode:
Diffstat (limited to 'life.cc')
-rw-r--r--life.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/life.cc b/life.cc
index 5e9b52c..847fe14 100644
--- a/life.cc
+++ b/life.cc
@@ -38,8 +38,8 @@ void draw(
}
}
- print_tb(x+1, y+21, TB_WHITE, TB_DEFAULT, "Age:");
- print_tb(x+6, y+21, TB_WHITE, TB_DEFAULT, std::to_string(world.getAge()));
+ print_tb(1, 1, TB_WHITE, TB_DEFAULT, "Age:");
+ print_tb(6, 1, TB_WHITE, TB_DEFAULT, std::to_string(world.getAge()));
tb_present();
}