aboutsummaryrefslogtreecommitdiff
path: root/make-msvc.bat
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2023-06-06 09:50:16 +0200
committerLadislav Zezula <zezula@volny.cz>2023-06-06 09:50:16 +0200
commitafd304b180607a68edc1613074eeaca5e8805153 (patch)
tree161b1c1622d5d43e333bd73272173f83cc6e910e /make-msvc.bat
parent1e436d61fe963d58235af5b898f0e70a18bbb550 (diff)
Fixed loading of corrupt MPQ version 2
Diffstat (limited to 'make-msvc.bat')
-rw-r--r--make-msvc.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/make-msvc.bat b/make-msvc.bat
index d2d06d3..3dbc675 100644
--- a/make-msvc.bat
+++ b/make-msvc.bat
@@ -27,8 +27,8 @@ if exist "%PROGRAM_FILES_X64%\Microsoft Visual Studio\2022\Enterprise\VC\Auxilia
:: Build all libraries using Visual Studio 2008 and 2019
if not "x%VCVARS_2008%" == "x" call :BuildLibs "%VCVARS_2008%" x86 %LIB_NAME%_vs08.sln \vs2008
if not "x%VCVARS_2008%" == "x" call :BuildLibs "%VCVARS_2008%" x64 %LIB_NAME%_vs08.sln \vs2008
-if not "x%VCVARS_20xx%" == "x" call :BuildLibs "%VCVARS_20xx%" x86 %LIB_NAME%_vs22.sln
-if not "x%VCVARS_20xx%" == "x" call :BuildLibs "%VCVARS_20xx%" x64 %LIB_NAME%_vs22.sln
+if not "x%VCVARS_20xx%" == "x" call :BuildLibs "%VCVARS_20xx%" x86 %LIB_NAME%.sln
+if not "x%VCVARS_20xx%" == "x" call :BuildLibs "%VCVARS_20xx%" x64 %LIB_NAME%.sln
goto:eof
::-----------------------------------------------------------------------------