#!/bin/bash if [ ! -f build_win/demo64k.exe ]; then echo "Error: build_win/demo64k.exe not found. Run scripts/build_win.sh first." exit 1 fi echo "Running with Wine..." # Wine might output a lot of debug info, but for now we let it flow. wine build_win/demo64k.exe "$@"