From c64f9aa9466941a823a34b041b3775d27635d75a Mon Sep 17 00:00:00 2001 From: anth64 Date: Sun, 18 Jan 2026 22:24:24 +0100 Subject: [PATCH] fix: I forgot to change it from uint8_t to int... --- src/platform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/platform.c b/src/platform.c index 56cf649..47f8f74 100644 --- a/src/platform.c +++ b/src/platform.c @@ -22,9 +22,9 @@ #include #endif -uint8_t is_module_loaded(const char *filename, - char (*loaded_module_ids)[STK_MOD_ID_BUFFER], - size_t loaded_count); +int is_module_loaded(const char *filename, + char (*loaded_module_ids)[STK_MOD_ID_BUFFER], + size_t loaded_count); uint8_t is_valid_module_file(const char *filename); int platform_mkdir(const char *path)