From 84763356dafca4af211630a17e906d9d09f8be9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Denis=20Nut=CC=A6iu?= Date: Sun, 11 Dec 2016 16:25:29 +0200 Subject: [PATCH] Implementing configuration file --- extra/DSA/matrix-cube.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/extra/DSA/matrix-cube.c b/extra/DSA/matrix-cube.c index df57cb8..ae9902e 100644 --- a/extra/DSA/matrix-cube.c +++ b/extra/DSA/matrix-cube.c @@ -31,17 +31,7 @@ int cols; // Config settings. config_t configuration; config_setting_t * cfg_setting; - -// unsigned testM[4][4] = { -// {0, 0, 0, 0}, -// {0, 0, 0, 0}, -// {0, 0, 0, 0}, -// {0, 0, 0, 0}, -// }; - unsigned ** testM; -// The number will represent the death time, when it reaches 0, the cell -// becomes a death wall. void make_visited_cell(unsigned * x) { *x |= VISITED_MASK; } void unmake_visited_cell(unsigned * x) { *x &= ~VISITED_MASK; }