mirror of https://github.com/OpenTTD/OpenTTD
(svn r1893) If -i was specified respect it
parent
ae2cfeefe3
commit
0d8dcacee2
|
@ -835,12 +835,15 @@ void CheckExternalFiles(void)
|
||||||
printf("Your sample.cat file is corrupted or missing!");
|
printf("Your sample.cat file is corrupted or missing!");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
* forced DOS palette via command line -> leave it that way
|
||||||
* all Windows files present -> Windows palette
|
* all Windows files present -> Windows palette
|
||||||
* all DOS files present -> DOS palette
|
* all DOS files present -> DOS palette
|
||||||
* no Windows files present and any DOS file present -> DOS palette
|
* no Windows files present and any DOS file present -> DOS palette
|
||||||
* otherwise -> Windows palette
|
* otherwise -> Windows palette
|
||||||
*/
|
*/
|
||||||
if (win == 5) {
|
if (_use_dos_palette) {
|
||||||
|
return;
|
||||||
|
} else if (win == 5) {
|
||||||
_use_dos_palette = false;
|
_use_dos_palette = false;
|
||||||
} else if (dos == 5 || (win == 0 && dos > 0)) {
|
} else if (dos == 5 || (win == 0 && dos > 0)) {
|
||||||
_use_dos_palette = true;
|
_use_dos_palette = true;
|
||||||
|
|
Loading…
Reference in New Issue