diff options
author | rubidium <rubidium@openttd.org> | 2010-02-22 16:24:23 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-02-22 16:24:23 +0000 |
commit | 03e5434e63305fa66cbd6460f584c2dd99cdb128 (patch) | |
tree | daa94b4c2147626dd1ab275f61ad1badd971a7fb /src/gfxinit.cpp | |
parent | dd7c2b2f9db8b2ca2339d43fcf7b0f6da46e8c96 (diff) | |
download | openttd-03e5434e63305fa66cbd6460f584c2dd99cdb128.tar.xz |
(svn r19206) -Add: concept of fallback base sets, i.e. do not automatically load the NoMusic/NoSound sets when there is another set
Diffstat (limited to 'src/gfxinit.cpp')
-rw-r--r-- | src/gfxinit.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gfxinit.cpp b/src/gfxinit.cpp index 999d24856..188b6c87b 100644 --- a/src/gfxinit.cpp +++ b/src/gfxinit.cpp @@ -296,6 +296,7 @@ template <class Tbase_set> if (c->GetNumMissing() != 0) continue; if (best == NULL || + (best->fallback && !c->fallback) || best->valid_files < c->valid_files || (best->valid_files == c->valid_files && ( (best->shortname == c->shortname && best->version < c->version) || |