fix a copy paste error

This commit is contained in:
Isaac0-dev 2025-06-13 11:06:58 +10:00
parent 0ecaaf767a
commit c8902d9c20

View file

@ -280,7 +280,7 @@ void gfx_copy(Gfx *dest, Gfx *src, u32 length) {
u32 destLength = gfx_get_length(dest);
if (length > destLength) {
LOG_LUA_LINE("gfx_copy: Cannot copy %u commands to a display list of length: %u", length, srcLength);
LOG_LUA_LINE("gfx_copy: Cannot copy %u commands to a display list of length: %u", length, destLength);
return;
}