From 8ed7c392cd73f9316c65b10b543c8074d5e46061 Mon Sep 17 00:00:00 2001 From: vulcandth Date: Wed, 7 Sep 2022 19:25:20 -0500 Subject: [PATCH] Fix order of parameters in dsprite macro The parameters of the legacy dsprite macros were in the wrong order. Fixes #1002 Co-Authored-By: Idain <54337884+Idain@users.noreply.github.com> Co-Authored-By: Fredrik Ljungdahl --- macros/legacy.asm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/legacy.asm b/macros/legacy.asm index 3bb1a54a1..048f83ca1 100644 --- a/macros/legacy.asm +++ b/macros/legacy.asm @@ -8,7 +8,7 @@ DEF callab EQUS "callfar" ; macros/gfx.asm MACRO dsprite - dbsprite \2, \4, \1, \3, \5, \6 + dbsprite \3, \1, \4, \2, \5, \6 ENDM ; macros/data.asm