LEGO Island

This commit is contained in:
Murphy 2024-10-18 15:34:43 -04:00
parent ac265dbf9c
commit 5831a45bdd
Signed by: freya
GPG key ID: 744AB800E383AE52
5 changed files with 29 additions and 0 deletions

3
LEGO Island/.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
bin
iso
wine

6
LEGO Island/README.md Normal file
View file

@ -0,0 +1,6 @@
#### Lego Island
Store the Lego Island iso into the `bin` folder and name it `game.iso`.
Then run `setup`.
> Note: broken

5
LEGO Island/env Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win64
export WINEESYNC=1

5
LEGO Island/run Executable file
View file

@ -0,0 +1,5 @@
#!/bin/sh
source ./env
cd 'wine/drive_c/Program Files (x86)/LEGO Island/' && wine 'ISLE.EXE'

10
LEGO Island/setup Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
source ./env
rm -fr ./iso
mkdir ./iso
7z x ./bin/game.iso -oiso
winetricks winxp
wine ./iso/setup.exe
#cp ../dxvk/x32/*.dll ./wine/drive_c/windows/system32
#cp ../dxvk/x64/*.dll ./wine/drive_c/windows/syswow64