mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 01:01:33 +00:00
Write colormap alpha to textmap in old range, for now
This commit is contained in:
parent
dedd80a0f0
commit
0f9ed1b822
1 changed files with 8 additions and 2 deletions
|
@ -2732,6 +2732,11 @@ static void P_WriteTextmap(void)
|
|||
INT32 fadecolor = P_RGBAToColor(wsectors[i].extra_colormap->fadergba);
|
||||
UINT8 fadealpha = R_GetRgbaA(wsectors[i].extra_colormap->fadergba);
|
||||
|
||||
// For now, convert alpha from new (0-255) to old 'A-Z' (0-25) range
|
||||
// TODO: remove this limitation in a backwards-compatible way (UDMF versioning?)
|
||||
lightalpha /= 10;
|
||||
fadealpha /= 10;
|
||||
|
||||
if (lightcolor != 0)
|
||||
fprintf(f, "lightcolor = %d;\n", lightcolor);
|
||||
if (lightalpha != 25)
|
||||
|
@ -2993,7 +2998,8 @@ static void P_LoadTextmap(void)
|
|||
P_InitializeSector(sc);
|
||||
if (textmap_colormap.used)
|
||||
{
|
||||
// Convert alpha values from old 0-25 (A-Z) range to 0-255 range
|
||||
// Convert alpha values from old 'A-Z' (0-25) range to new UINT8 (0-255) range
|
||||
// TODO: remove this limitation in a backwards-compatible way (UDMF versioning?)
|
||||
UINT8 lightalpha = (textmap_colormap.lightalpha * 102) / 10;
|
||||
UINT8 fadealpha = (textmap_colormap.fadealpha * 102) / 10;
|
||||
|
||||
|
|
Loading…
Reference in a new issue