summaryrefslogtreecommitdiff
path: root/scripts/run_win.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/run_win.sh')
-rwxr-xr-xscripts/run_win.sh9
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 "$@"