mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-22 01:52:43 +00:00
fix a copy paste error
This commit is contained in:
parent
0ecaaf767a
commit
c8902d9c20
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue