- Fixed: The FSpecialFont constructor copied the untranslated colors directly
from the source palette instead of the font's identity map. SVN r646 (trunk)
This commit is contained in:
parent
3df3d6d052
commit
5a0009cbab
2 changed files with 3 additions and 1 deletions
|
|
@ -1449,7 +1449,7 @@ FSpecialFont::FSpecialFont (const char *name, int first, int count, int *lumplis
|
|||
for (j = ActiveColors; j < TotalColors; ++j)
|
||||
{
|
||||
remap->Remap[j] = identity[j];
|
||||
remap->Palette[j] = GPalette.BaseColors[j];
|
||||
remap->Palette[j] = GPalette.BaseColors[identity[j]];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue