From 02710fdba66d4237bad5960f2c8e28cf59ebaa51 Mon Sep 17 00:00:00 2001 From: IntegratedQuantum Date: Sun, 23 Feb 2025 15:52:54 +0100 Subject: [PATCH] Run the game in ReleaseSafe by default. fixes #409 --- run_linux.sh | 2 +- run_windows.bat | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run_linux.sh b/run_linux.sh index 879b7385..a4c9e9c0 100755 --- a/run_linux.sh +++ b/run_linux.sh @@ -2,7 +2,7 @@ cd "$(dirname "$0")" -./debug_linux.sh -Doptimize=ReleaseFast "$@" +./debug_linux.sh -Doptimize=ReleaseSafe "$@" if [ ! $NO_PAUSE ]; then echo "Press enter key to continue. (Or export NO_PAUSE=1 to skip this prompt.)" diff --git a/run_windows.bat b/run_windows.bat index bdcfd319..6b9f6cd5 100644 --- a/run_windows.bat +++ b/run_windows.bat @@ -2,7 +2,7 @@ cd /D "%~dp0" -call debug_windows.bat -Doptimize=ReleaseFast %* +call debug_windows.bat -Doptimize=ReleaseSafe %* IF "%NO_PAUSE%" == "" ( echo Press enter key to continue. (Or set NO_PAUSE=1 to skip this prompt.^)