From 840bcbda4fa510554ea64cc943d33bd96e28b556 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Fri, 31 Jul 2026 04:04:37 +0200 Subject: Adds curses UI (WIP) --- core/salis.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'core/salis.c') diff --git a/core/salis.c b/core/salis.c index 6cc0725..295467b 100644 --- a/core/salis.c +++ b/core/salis.c @@ -49,14 +49,14 @@ // ---------------------------------------------------------------------------- struct Core g_cores[CORES]; uint64_t g_step; -uint64_t g_sync; -const struct Proc g_null_proc; +static uint64_t g_sync; +static const struct Proc g_null_proc; -char g_asav_pbuf[AUTOSAVE_NAME_LEN]; -char g_evas_pbuf[EVA_SAVE_NAME_LEN]; +static char g_asav_pbuf[AUTOSAVE_NAME_LEN]; +static char g_evas_pbuf[EVA_SAVE_NAME_LEN]; -atomic_bool g_running; -thrd_t g_thrd; +static atomic_bool g_running; +static thrd_t g_thrd; // ---------------------------------------------------------------------------- // [section] memory vector functions -- cgit v1.3.1