1
0
mirror of https://github.com/catseye/SixtyPical.git synced 2024-06-02 03:41:28 +00:00

The VICE emulators just keep going if they can't find the vicerc.

This commit is contained in:
Chris Pressey 2019-04-10 16:53:01 +01:00
parent c906ab7817
commit 04a9438898
2 changed files with 4 additions and 20 deletions

View File

@ -6,18 +6,10 @@ arch="$1"
shift 1
if [ "X$arch" = "Xc64" ]; then
output_format='c64-basic-prg'
if [ -e vicerc ]; then
emu="x64 -config vicerc"
else
emu="x64"
fi
emu="x64 -config vicerc"
elif [ "X$arch" = "Xvic20" ]; then
output_format='vic20-basic-prg'
if [ -e vicerc ]; then
emu="xvic -config vicerc"
else
emu="xvic"
fi
emu="xvic -config vicerc"
else
echo $usage && exit 1
fi

View File

@ -6,18 +6,10 @@ arch="$1"
shift 1
if [ "X$arch" = "Xc64" ]; then
output_format='c64-basic-prg'
if [ -e vicerc ]; then
emu="x64 -config vicerc"
else
emu="x64"
fi
emu="x64 -config vicerc"
elif [ "X$arch" = "Xvic20" ]; then
output_format='vic20-basic-prg'
if [ -e vicerc ]; then
emu="xvic -config vicerc"
else
emu="xvic"
fi
emu="xvic -config vicerc"
elif [ "X$arch" = "Xatari2600" ]; then
output_format='atari2600-cart'
emu='stella'