commit 7f0772f4b67fcae9fea06db4033937d69e215b04
parent 136dbb8d07d8d5f09959b90670f87dc5f6b5e0f8
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date: Sun, 25 Jun 2023 15:59:53 +0200
Removed direct dr step to keep things light
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/nissy.h b/src/nissy.h
@@ -1,5 +1,5 @@
/* TODO: find a better way to define this */
-#define TABLESFILESIZE 150000000 /* 150Mb */
+#define TABLESFILESIZE 700000 /* 700Kb */
/* Initialize nissy, to be called on startup */
void nissy_init(char *);
diff --git a/src/steps.c b/src/steps.c
@@ -173,7 +173,10 @@ Coordinate coord_drudfin_noE_sym16 = {
Coordinate *coordinates[] = {
&coord_eofb,
+ /*
+ TODO: remove non-eo DR step, but add / keep direct DR finish
&coord_eofbepos_sym16, &coord_coud, &coord_drud_sym16,
+ */
/* TODO: add back all useful coordinates */
/*
&coord_cp_sym16, &coord_epos, &coord_epe,
@@ -201,7 +204,7 @@ Step drfin_drud = {
.coord = {&coord_drudfin_noE_sym16, &coord_epe, NULL},
};
-Step *steps[] = {&eofb_HTM, &drud_HTM, &drfin_drud, NULL};
+Step *steps[] = {&eofb_HTM, &drfin_drud, NULL};
static bool
moveset_HTM(Move m)