fix OOBE with low res column

This commit is contained in:
dfsek 2022-06-14 18:57:01 -07:00
parent 61a40b4825
commit 8b12dda604

View File

@ -42,8 +42,11 @@ public interface Column<T> {
int max = getMaxY() - 1; int max = getMaxY() - 1;
while(y < max) { while(true) {
y += resolution; y += resolution;
if(y >= max) {
break;
}
T current = get(y); T current = get(y);
if(!current.equals(runningObj)) { if(!current.equals(runningObj)) {