aboutsummaryrefslogtreecommitdiff
path: root/src/calculer.c
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@inria.fr>2026-08-04 23:38:19 +0200
committerTristan Riehs <tristan.riehs@inria.fr>2026-08-04 23:38:19 +0200
commitd10a8424cbf8e529a1b36287d41f7fe6df353e2f (patch)
tree45a44dca1163eca25ccd9035187fba048e6653c8 /src/calculer.c
parentca530eb3a2b65dbc7716e557752c87e36aa1879d (diff)
Get rid of the non-reloadable version
It creates two different versions of the code for no valid reason. dynamically loading the display is not that mystical in the end.
Diffstat (limited to 'src/calculer.c')
-rw-r--r--src/calculer.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/calculer.c b/src/calculer.c
index 7b5b7db..2abd68a 100644
--- a/src/calculer.c
+++ b/src/calculer.c
@@ -193,13 +193,11 @@ main(int argc, char *argv[])
fclose(logfile);
exit(0);
}
-#ifndef NDEBUG
else if (input == DISP_RELOAD)
{
disp_reload(disp);
continue;
}
-#endif
measure_after(measure_data, input == res);
disp->display_res(input == res, ms);
}