summaryrefslogtreecommitdiff
path: root/scripts/run_win.sh
blob: 853a985cc3bd534b674aeda173a70b10896d21f9 (plain)
1
2
3
4
5
6
7
8
9
#!/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 "$@"