From 339306e47f7c95a6d699d6e45f98af91ab866676 Mon Sep 17 00:00:00 2001 From: Aaro Varis Date: Sun, 27 Oct 2024 12:21:56 +0200 Subject: [PATCH] fixed silly mistake --- VRCBoardManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VRCBoardManager.cs b/VRCBoardManager.cs index 3032767..db173ea 100644 --- a/VRCBoardManager.cs +++ b/VRCBoardManager.cs @@ -539,7 +539,7 @@ namespace VRCBoard 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;