From 5b3234f34fd081a3fe81c95bd55f4bfc853568a5 Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Sun, 24 Mar 2024 20:53:49 +0100 Subject: Improve and simplify movement logic It was very complicated and tried to handle cases that were specific to certain movement with a too general approach. --- src/main/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main') diff --git a/src/main/main.c b/src/main/main.c index a1703ce..927785e 100644 --- a/src/main/main.c +++ b/src/main/main.c @@ -38,7 +38,7 @@ void *frame_alloc(size_t sz) { return frame_allocator_alloc(&frame_allocator, sz); } -bool running = true; +static bool running = true; void terminate() { running = false; } -- cgit v1.2.3