diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-20 13:23:58 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | c81898d6a760e2057f0933c9da6160702a4d0f61 (patch) | |
| tree | f08bc685da10ec7f9201f983e1b5528f388f7f88 /src/ct1986.c | |
| parent | c1b4600ee67c651a79f682600fa7f2676ffa916e (diff) | |
In-lined as much as a i dare
Diffstat (limited to 'src/ct1986.c')
| -rw-r--r-- | src/ct1986.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/ct1986.c b/src/ct1986.c index 91d70b0..b265b57 100644 --- a/src/ct1986.c +++ b/src/ct1986.c @@ -95,8 +95,9 @@ new_game(uint8_t size) { gamelog[0] = 0; } -static void -dot(const uint8_t depth) { +// Set up output function for ct1986 +inline void +ct1986_display_progress(const uint8_t depth) { if (depth == 0) { fputc('#', lcd); } @@ -165,9 +166,6 @@ main(int argc, char **argv) { lcd = fopen("/dev/lcd","w"); if (lcd == NULL) return EXIT_FAILURE; - // Set up output function for ct1986 - ct1986_display_progress = ˙ - human = 0; search_depth = 3; new_game(5); |
