aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/calculer.c2
-rw-r--r--src/ray.c2
-rw-r--r--src/tui.c2
3 files changed, 6 insertions, 0 deletions
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;