From f6b7ea11c8626e4641bd231e6a1a9dbc10bd777a Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Wed, 5 Mar 2025 16:34:07 +1100 Subject: [PATCH] [host] app: fix complation on windows with mingw --- host/src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/src/app.c b/host/src/app.c index 679c2d24..0302fa23 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -112,7 +112,7 @@ struct app bool captureStarted; enum AppState state; - enum LGMPTimerState lgmpTimerState; + _Atomic(enum LGMPTimerState) lgmpTimerState; LGTimer * lgmpTimer; LGThread * frameThread; bool threadsStarted;