found another one

This commit is contained in:
Isaac0-dev 2025-06-13 11:13:56 +10:00
parent c8902d9c20
commit 99548b5b42

View file

@ -382,7 +382,7 @@ void vtx_copy(Vtx *dest, Vtx *src, u32 count) {
u32 destLength = vtx_get_count(dest);
if (count > destLength) {
LOG_LUA_LINE("vtx_copy: Cannot copy %u vertices to a vertex buffer of count: %u", count, srcLength);
LOG_LUA_LINE("vtx_copy: Cannot copy %u vertices to a vertex buffer of count: %u", count, destLength);
return;
}