Skip to content

Commit

Permalink
added gold rush classic
Browse files Browse the repository at this point in the history
  • Loading branch information
Dpbm committed Feb 8, 2023
1 parent c43050b commit 765b557
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
26 changes: 26 additions & 0 deletions gold-rush-classic/dosbox.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[sdl]
output= overlay
fullscreen=true
fullresolution=desktop
windowresolution= 800x600
autolock=false

[dosbox]
machine= tandy
captures= C:\Users\me\AppData\Local\DOSBox\capture

[render]
aspect= true
scaler= normal3x

[cpu]
core= normal
cycles= 10000

[autoexec]
cls
mount c .
c:
cd \
GR.COM
exit
14 changes: 14 additions & 0 deletions gold-rush-classic/full-screen.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/bin/bash

STEAM_LIBRARY=$1

if [ -z $STEAM_LIBRARY ]
then
printf "\n\e[31mUsage: sh full-screen.sh PATH_TO_YOUR_STEAM_LIBRARY_FOLDER\e[0m\n"
exit 1
fi

TARGET_FOLDER="$STEAM_LIBRARY/steamapps/common/Gold\ Rush\ -\ Classic/"

printf "\nCopying dosbox.conf file to $TARGET_FOLDER...\n"
eval cp ./dosbox.conf $TARGET_FOLDER
9 changes: 9 additions & 0 deletions gold-rush-classic/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Gold Rush Classic

## Full screen

1. run
```bash
cd gold-rush-classic
sh full-screen.sh PATH_TO_YOUR_STEAM_LIBRARY_FOLDER
```

0 comments on commit 765b557

Please sign in to comment.