mirror of
https://github.com/bryanthaboi/gen1recomp.git
synced 2026-08-12 16:31:05 +02:00
13 lines
440 B
Batchfile
13 lines
440 B
Batchfile
@echo off
|
|
rem Pokemon Red (LOVE2D) - double-click launcher for Windows.
|
|
rem First run: decodes a user-provided .gb and installs Python/LOVE if needed,
|
|
rem builds the game data, then launches. Later runs: launches straight away.
|
|
title Pokemon Red - LOVE2D port
|
|
cd /d "%~dp0"
|
|
powershell -NoProfile -ExecutionPolicy Bypass -File "scripts\bootstrap.ps1"
|
|
if errorlevel 1 (
|
|
echo.
|
|
echo Something went wrong - see the messages above.
|
|
pause
|
|
)
|