summaryrefslogtreecommitdiff
path: root/tools/mkbindist.bat
diff options
context:
space:
mode:
authorGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-11-25 19:40:20 +0000
committerGravatar Michael Smith <mikesmiffy128@gmail.com> 2025-11-25 19:44:59 +0000
commit447aa3e9d2983a8fd74e7f8371bf88ece291bd69 (patch)
tree7b4a5e84655fdb5f5f48f8b5e39160303bdc0434 /tools/mkbindist.bat
parent04b465b8914bb8a0965e137dd1a5bd14f2963482 (diff)
downloadsst-fa55d077f2ddc09bd8b2ca9e52b8c249bcfacd82.tar.gz
sst-fa55d077f2ddc09bd8b2ca9e52b8c249bcfacd82.zip
Fix input HUD crash in L4D gamesHEADv0.16-BETAmaster
I screwed up merging Evan's changes, and also didn't have that one REQUIRE_GAMEDATA for some reason, and also didn't test actually turning on the sst_inputhud cvar once everything had loaded fine in testing. Unlucky, I guess. Better testing might still have caught it.
Diffstat (limited to 'tools/mkbindist.bat')
-rw-r--r--tools/mkbindist.bat4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mkbindist.bat b/tools/mkbindist.bat
index 63883e8..a3a17c2 100644
--- a/tools/mkbindist.bat
+++ b/tools/mkbindist.bat
@@ -21,8 +21,8 @@ md TEMP-%name% || goto :end
copy sst.dll TEMP-%name%\sst.dll || goto :end
copy dist\LICENCE.windows TEMP-%name%\LICENCE || goto :end
:: using midnight on release day to make zip deterministic! change on next release!
-powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 11, 24, 0, 0, 0
-powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 11, 24, 0, 0, 0
+powershell (Get-Item TEMP-%name%\sst.dll).LastWriteTime = new-object DateTime 2025, 11, 25, 0, 0, 0
+powershell (Get-Item TEMP-%name%\LICENCE).LastWriteTime = new-object DateTime 2025, 11, 25, 0, 0, 0
pushd TEMP-%name%
"%SEVENZIP%" a -mtc=off %name%.zip sst.dll LICENCE || goto :end
move %name%.zip ..\release\%name%.zip