mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-13 16:07:40 +00:00
Fix stencil write bug
This commit is contained in:
parent
529a93b680
commit
6989b7037e
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ public:
|
||||||
if (Values[0] == value)
|
if (Values[0] == value)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
for (int i = 1; i < 8 * 8 + 4 * 4 + 2 * 2 + 1; i++)
|
for (int i = 1; i < 8 * 8; i++)
|
||||||
Values[i] = Values[0];
|
Values[i] = Values[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue