Compare commits
2 commits
ac265dbf9c
...
25166edb13
Author | SHA1 | Date | |
---|---|---|---|
25166edb13 | |||
5831a45bdd |
13 changed files with 52 additions and 1 deletions
3
LEGO Island/.gitignore
vendored
Normal file
3
LEGO Island/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
bin
|
||||
iso
|
||||
wine
|
6
LEGO Island/README.md
Normal file
6
LEGO Island/README.md
Normal 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
5
LEGO Island/env
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/bin/sh
|
||||
|
||||
export WINEPREFIX="$(pwd)/wine"
|
||||
export WINEARCH=win64
|
||||
export WINEESYNC=1
|
5
LEGO Island/run
Executable file
5
LEGO Island/run
Executable 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
10
LEGO Island/setup
Executable 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
|
|
@ -6,3 +6,8 @@ export LC_ALL=ja_JP.UTF-8
|
|||
export WINEPREFIX="$(pwd)/wine"
|
||||
export WINEARCH=win32
|
||||
export WINEESYNC=1
|
||||
|
||||
export GAMESCOPE=gamescope
|
||||
if command -v "gamescope-legacy"; then
|
||||
export GAMESCOPE="gamescope-legacy"
|
||||
fi
|
||||
|
|
|
@ -5,5 +5,5 @@ source ./env
|
|||
#Xwayland :1 -fullscreen -geometry 800x600 &
|
||||
#cd data && DISPLAY=:1 wine 'Lamento -BEYOND THE VOID-.exe'
|
||||
|
||||
cd data && gamescope-legacy -W 800 -H 600 -- \
|
||||
cd data && "$GAMESCOPE" -W 800 -H 600 -- \
|
||||
wine 'Lamento -BEYOND THE VOID-.exe'
|
||||
|
|
1
Minesweeper/.gitignore
vendored
Normal file
1
Minesweeper/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
wine
|
BIN
Minesweeper/bin/WINMINE.CHM
Normal file
BIN
Minesweeper/bin/WINMINE.CHM
Normal file
Binary file not shown.
BIN
Minesweeper/bin/WINMINE.EXE
Normal file
BIN
Minesweeper/bin/WINMINE.EXE
Normal file
Binary file not shown.
BIN
Minesweeper/bin/WINMINE.HLP
Normal file
BIN
Minesweeper/bin/WINMINE.HLP
Normal file
Binary file not shown.
10
Minesweeper/env
Executable file
10
Minesweeper/env
Executable file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
|
||||
export WINEPREFIX="$(pwd)/wine"
|
||||
export WINEARCH=win64
|
||||
export WINEESYNC=1
|
||||
|
||||
export GAMESCOPE=gamescope
|
||||
if command -v "gamescope-legacy"; then
|
||||
export GAMESCOPE="gamescope-legacy"
|
||||
fi
|
6
Minesweeper/run
Executable file
6
Minesweeper/run
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
source ./env
|
||||
|
||||
cd bin && "$GAMESCOPE" -W 800 -H 600 -- \
|
||||
wine 'WINMINE.EXE'
|
Loading…
Reference in a new issue