32 bit wine setup for x86_64 including Kitchensinc Games and Swamp.

This commit is contained in:
Storm Dragon
2025-08-12 20:48:32 -04:00
parent 6a0bf65eec
commit 83071850bc
2 changed files with 20 additions and 0 deletions
+18
View File
@@ -363,6 +363,24 @@ case "$GAME" in
"Wicked Quest")
run_native "wicked-quest" "wicked_quest.py"
;;
"Kitchen's Sink")
pushd "/home/stormux/.wine32/drive_c/Program Files/Kitchen's Sink"
if [[ "$(uname -m)" != "x86_64" ]]; then
WINEPREFIX=/home/stormux/.wine32 FEXBash -c "/home/stormux/.local/wine32/bin/wine gamemenu.exe"
else
WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine gamemenu.exe
fi
popd
;;
"Swamp")
pushd "/home/stormux/.wine32/drive_c/Program Files/swamp"
if [[ "$(uname -m)" != "x86_64" ]]; then
WINEPREFIX=/home/stormux/.wine32 FEXBash -c "/home/stormux/.local/wine32/bin/wine Swamp.exe"
else
WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine Swamp.exe
fi
popd
;;
"Zombowl")
run_native "zombowl" "zombowl.py"
;;
+2
View File
@@ -916,6 +916,8 @@ if __name__ == "__main__":
menu.add_item("Arcade", "Villains From Beyond", "GAME='Villains From Beyond' startx")
menu.add_item("Arcade", "Wicked Quest", "GAME='Wicked Quest' startx")
menu.add_item("Arcade", "Zombowl", "GAME='Zombowl' startx")
menu.add_item("Arcade", "Kitchen's Sink", "GAME=\"Kitchen's Sink\" startx")
menu.add_item("Arcade", "Swamp", "GAME='Swamp' startx")
# Add board and card games section
menu.add_section("Board and Card Games")