From 2c430e5abf981d930023b454a2a5c3b7b7210802 Mon Sep 17 00:00:00 2001 From: Peter0x44 Date: Mon, 3 Mar 2025 08:02:33 +0000 Subject: [PATCH] TOOLS: Fix windows bat script, change fteqcc flags in line with the sh script --- tools/qc-compiler-win.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tools/qc-compiler-win.bat b/tools/qc-compiler-win.bat index eecd4fd..ec722cd 100644 --- a/tools/qc-compiler-win.bat +++ b/tools/qc-compiler-win.bat @@ -14,13 +14,13 @@ CD bin/ REM ****** build.. ****** echo Compiling FTE CSQC.. -fteqcc-cli-win.exe -srcfile ../progs/csqc.src +fteqcc-cli-win.exe -DFTE -Wall -srcfile ../progs/csqc.src echo Compiling FTE SSQC.. -fteqcc-cli-win.exe -O3 -DFTE -srcfile ../progs/ssqc.src +fteqcc-cli-win.exe -O3 -DFTE -Wall -srcfile ../progs/ssqc.src echo Compiling FTE MenuQC.. -fteqcc-cli-win.exe -O3 -DFTE -srcfile ../progs/menu.src +fteqcc-cli-win.exe -O3 -DFTE -Wall -srcfile ../progs/menu.src echo Compiling Standard/Id SSQC.. -fteqcc-cli-win.exe -O3 -srcfile ../progs/ssqc.src +fteqcc-cli-win.exe -O3 -Wall -srcfile ../progs/ssqc.src echo End of script. -pause \ No newline at end of file +pause