mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-03-20 01:41:27 +00:00
Remove if statement that was always false
This commit is contained in:
parent
cd392e50e9
commit
a408ea312f
1 changed files with 1 additions and 5 deletions
|
@ -87,11 +87,7 @@ namespace swrenderer
|
|||
col = width + (col % width);
|
||||
}
|
||||
|
||||
if (viewport->RenderTarget->IsBgra())
|
||||
source = (const uint8_t *)texture->GetColumnBgra(col, nullptr);
|
||||
else
|
||||
source = texture->GetColumn(col, nullptr);
|
||||
|
||||
source = texture->GetColumn(col, nullptr);
|
||||
source2 = nullptr;
|
||||
texturefracx = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue