fixed silly mistake

This commit is contained in:
Aaro Varis
2024-10-27 12:21:56 +02:00
parent 26de34be44
commit 339306e47f

View File

@@ -539,7 +539,7 @@ namespace VRCBoard
return null; return null;
} }
int blockSize = (int)Mathf.Floor((float)(texture.width+1) / (float)(size)); int blockSize = (int)Mathf.Floor((float)(texture.width) / (float)(size));
int startX = position % size; int startX = position % size;