Fix stencil write bug

This commit is contained in:
Magnus Norddahl 2016-11-11 10:25:40 +01:00
parent 529a93b680
commit 6989b7037e

View file

@ -64,7 +64,7 @@ public:
if (Values[0] == value)
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];
}