This commit is contained in:
2026-08-10 20:20:27 +02:00
parent 715c0d98c5
commit 00a7ea26d6
18 changed files with 43 additions and 41 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
@echo off
REM Starts HatariZipLauncher.exe from the correct folder
REM Starts MarcerGameDvdLauncher.exe from the correct folder
setlocal
set EXE_PATH=%~dp0HatariZipLauncher\bin\Release\net10.0\HatariZipLauncher.exe
set EXE_PATH=%~dp0MarcerGameDvdLauncher\bin\Release\net10.0\MarcerGameDvdLauncher.exe
if not exist "%EXE_PATH%" (
echo [ERROR] Application not built. Please run build.cmd first.
exit /b 1
)
pushd "HatariZipLauncher\bin\Release\net10.0"
"HatariZipLauncher.exe"
pushd "MarcerGameDvdLauncher\bin\Release\net10.0"
"MarcerGameDvdLauncher.exe"
popd