mirror of
https://github.com/JGRennison/OpenTTD-patches.git
synced 2024-11-16 00:12:51 +00:00
(svn r1884) Change palette detection algorithm: Use the DOS palette if there are no Windows .grfs but at least one DOS .grf
This commit is contained in:
parent
73c0f21363
commit
431447ef87
@ -834,11 +834,17 @@ void CheckExternalFiles(void)
|
||||
if (!FileMD5(sample_cat_win, false) && !FileMD5(sample_cat_dos, false))
|
||||
printf("Your sample.cat file is corrupted or missing!");
|
||||
|
||||
if (win == 5) { // always use the Windows palette if all Windows files are present
|
||||
/*
|
||||
* all Windows files present -> Windows palette
|
||||
* all DOS files present -> DOS palette
|
||||
* no Windows files present and any DOS file present -> DOS palette
|
||||
* otherwise -> Windows palette
|
||||
*/
|
||||
if (win == 5) {
|
||||
_use_dos_palette = false;
|
||||
} else if (dos == 5) { // else use the DOS palette if all DOS files are present
|
||||
} else if (dos == 5 || (win == 0 && dos > 0) {
|
||||
_use_dos_palette = true;
|
||||
} else { // some files are missing, regardless of palette. Use Windows
|
||||
} else {
|
||||
_use_dos_palette = false;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user