Files
@ r4345:3e958e22413f
Branch filter:
Location: cpp/openttd-patchpack/source/os/debian/config - annotation
r4345:3e958e22413f
413 B
text/plain
(svn r6046) CodeChange : Rename WWT_5 Widget type to WWT_LABEL : a centered label
CodeChange : Move almost all fixed strings from ON_PAINT event to Widget array using WWT_LABEL.
Feature : All "Select Refit Cargo" are now centered, instead of been left aligned
CodeChange : Move almost all fixed strings from ON_PAINT event to Widget array using WWT_LABEL.
Feature : All "Select Refit Cargo" are now centered, instead of been left aligned
r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 r3299:3a5c45f34c50 | #!/bin/sh
# Source debconf library.
. /usr/share/debconf/confmodule
FILES="trg1r.grf trgcr.grf trghr.grf trgir.grf trgtr.grf sample.cat"
DATADIR=/usr/share/games/openttd/data
MISSING="No";
for FILE in $FILES; do
# Check if all the files needed are here.
if [ ! -e $DATADIR/$FILE ]; then
MISSING="Yes";
break;
fi;
done;
if [ $MISSING = "Yes" ]; then
db_input high openttd/datafiles || true
db_go
fi;
|