mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
- fixed sloped drawer crash
This commit is contained in:
parent
2c2b19bb7f
commit
b0cc472e85
1 changed files with 1 additions and 1 deletions
|
@ -2822,7 +2822,7 @@ namespace swrenderer
|
|||
}
|
||||
else
|
||||
{
|
||||
for (int i = 0; i < width; ++i)
|
||||
for (int i = 0; i <= width; ++i)
|
||||
{
|
||||
tiltlighting[i] = _colormap;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue