From e588343d89bb219497ff3056bffe5759dbb98436 Mon Sep 17 00:00:00 2001 From: Tristan Riehs Date: Tue, 4 Aug 2026 23:59:01 +0200 Subject: Add a bunch of todos --- src/calculer.c | 2 ++ src/ray.c | 2 ++ src/tui.c | 2 ++ 3 files changed, 6 insertions(+) (limited to 'src') diff --git a/src/calculer.c b/src/calculer.c index 2abd68a..d6f7bcf 100644 --- a/src/calculer.c +++ b/src/calculer.c @@ -9,6 +9,8 @@ #include "disp.h" +/* TODO: add Belote mode */ + static int lower = 0; static int upper = 100; diff --git a/src/ray.c b/src/ray.c index 5000599..9544ea5 100644 --- a/src/ray.c +++ b/src/ray.c @@ -14,6 +14,8 @@ #define MAX_FONTSIZE 100 +/* TODO: make the display scale better with window size */ + static struct calc_data calcs[CALC_COUNT] = {0}; static int current_idx = 0; diff --git a/src/tui.c b/src/tui.c index 09a039b..6ca1620 100644 --- a/src/tui.c +++ b/src/tui.c @@ -7,6 +7,8 @@ #include "calc_data.h" #include "input.h" +/* TODO: fix the TUI display */ + static struct calc_data calcs[CALC_COUNT] = {0}; static int current_idx = 0; static WINDOW *win; -- cgit v1.2.3