diff options
| author | Paul Oliver <contact@pauloliver.dev> | 2026-07-31 04:04:37 +0200 |
|---|---|---|
| committer | Paul Oliver <contact@pauloliver.dev> | 2026-08-01 04:25:46 +0200 |
| commit | 840bcbda4fa510554ea64cc943d33bd96e28b556 (patch) | |
| tree | bb01d90b004b8a9550d3c3eaa57ac8c4cc727e35 /core/salis.c | |
| parent | 8a4563d6d0c9e81fdaa42f6f760cae2b49cad431 (diff) | |
Diffstat (limited to 'core/salis.c')
| -rw-r--r-- | core/salis.c | 12 |
1 files changed, 6 insertions, 6 deletions
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 |
