Fix type typo

This commit is contained in:
Magnus Norddahl 2019-11-15 03:46:21 +01:00
parent 608895dae7
commit 3428b50924
1 changed files with 1 additions and 1 deletions

View File

@ -215,7 +215,7 @@ namespace swrenderer
double top, bot;
GetMaskedWallTopBottom(ds, top, bot);
float alpha = FLOAT2FIXED((float)MIN(curline->linedef->alpha, 1.));
fixed_t alpha = FLOAT2FIXED((float)MIN(curline->linedef->alpha, 1.));
bool additive = (curline->linedef->flags & ML_ADDTRANS) != 0;
RenderWallPart renderWallpart(Thread);