From e5b887d0b40dd22cb3f9010585cff0897f07aab1 Mon Sep 17 00:00:00 2001 From: Vlad Firoiu Date: Tue, 29 Jul 2025 22:34:49 -0700 Subject: [PATCH] Properly set playback flag in build-mac.sh. --- build-mac.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build-mac.sh b/build-mac.sh index 4068cceaf528..11505de547e2 100755 --- a/build-mac.sh +++ b/build-mac.sh @@ -16,6 +16,7 @@ export LIBRARY_PATH=$LIBRARY_PATH:/usr/local/lib:/usr/lib/ if [ "$1" == "playback" ] then echo "Using Playback build config" + CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=true" else echo "Using Netplay build config" CMAKE_FLAGS+=" -DSLIPPI_PLAYBACK=false"