OpenTTD: updates and fixes

This commit is contained in:
Sergii Pylypenko
2016-04-08 21:34:17 +03:00
parent 60042293ae
commit bc5191c50a
4 changed files with 10 additions and 7 deletions

View File

@@ -14,8 +14,11 @@ export CXXFLAGS=-O0
make -j8 VERBOSE=1 || exit 1
cd bin
export LD_LIBRARY_PATH=/usr/local/lib
if [ -z "$1" ]; then
./openttd -d 2 -r 854x480
./openttd -d 2 -r 854x480 -b 32bpp-anim
else
gdb -ex run --args ./openttd -d 2 -r 854x480 -g opntitle.sav
gdb -ex run --args \
./openttd -d 2 -r 854x480 -b 32bpp-anim -g opntitle.sav
fi