mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-16 01:31:30 +00:00
Missed fog boolean -> integer
This commit is contained in:
parent
6824e6a359
commit
07af82aa84
1 changed files with 1 additions and 1 deletions
|
@ -1784,7 +1784,7 @@ extracolormap_t *R_CreateColormap(char *p1, char *p2, char *p3)
|
|||
{
|
||||
if (p2[1])
|
||||
{
|
||||
fog = (boolean)NUMFROMCHAR(p2[1]);
|
||||
fog = NUMFROMCHAR(p2[1]);
|
||||
if (p2[2] && p2[3])
|
||||
{
|
||||
fadestart = NUMFROMCHAR(p2[3]) + (NUMFROMCHAR(p2[2]) * 10);
|
||||
|
|
Loading…
Reference in a new issue