28 lines
657 B
Batchfile
28 lines
657 B
Batchfile
@echo off
|
|
REM ===========================================================
|
|
REM CBE Emulator launcher
|
|
REM Double-click to run with embedded plugins.
|
|
REM No arguments needed - all plugins are inside cbe-emu.jar
|
|
REM ===========================================================
|
|
|
|
setlocal
|
|
cd /d "%~dp0"
|
|
|
|
set "JAVA_EXE=%~dp0runtime\bin\javaw.exe"
|
|
set "JAR=%~dp0app\cbe-emu.jar"
|
|
|
|
if not exist "%JAVA_EXE%" (
|
|
echo [ERROR] JRE not found at %JAVA_EXE%
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
if not exist "%JAR%" (
|
|
echo [ERROR] cbe-emu.jar not found at %JAR%
|
|
pause
|
|
exit /b 1
|
|
)
|
|
|
|
REM Launch GUI. Use %* to forward any extra args.
|
|
"%JAVA_EXE%" -Xmx256m -jar "%JAR%" %*
|