diff options
Diffstat (limited to 'scripts/run_win.sh')
| -rwxr-xr-x | scripts/run_win.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/scripts/run_win.sh b/scripts/run_win.sh new file mode 100755 index 0000000..853a985 --- /dev/null +++ b/scripts/run_win.sh @@ -0,0 +1,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 "$@" |
