From 075409130b9b8f4f573687ddfa571e910de42324 Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 8 Jul 2023 22:06:53 +0300 Subject: [PATCH] Fix typo --- src/core/PICA/gpu.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/PICA/gpu.cpp b/src/core/PICA/gpu.cpp index a2a1f761..37b67a50 100644 --- a/src/core/PICA/gpu.cpp +++ b/src/core/PICA/gpu.cpp @@ -172,7 +172,7 @@ void GPU::drawArrays() { // Vertex attributes used as padding // 12, 13, 14 and 15 are equivalent to 4, 8, 12 and 16 bytes of padding respectively if (index >= 12) [[unlikely]] { - // Align attriubte address up to a 4 byte boundary + // Align attribute address up to a 4 byte boundary attrAddress = (attrAddress + 3) & -4; attrAddress += (index - 11) << 2; continue;