diff --git a/src/engine/fox_radio.c b/src/engine/fox_radio.c index 1ad29810..827c5cb5 100644 --- a/src/engine/fox_radio.c +++ b/src/engine/fox_radio.c @@ -57,9 +57,9 @@ void Radio_PlayMessage(u16* msg, RadioCharacterId character) { TeamId teamId; s32 pad; s32 priority; - u16* lmsg = LOAD_ASSET(msg); + msg = SEGMENTED_TO_VIRTUAL(msg); - switch (lmsg[0]) { + switch (msg[0]) { default: case MSGCHAR_PRI0: priority = 0; diff --git a/src/overlays/ovl_i3/fox_zo.c b/src/overlays/ovl_i3/fox_zo.c index 70efa81e..dde6aa3e 100644 --- a/src/overlays/ovl_i3/fox_zo.c +++ b/src/overlays/ovl_i3/fox_zo.c @@ -7,6 +7,7 @@ #include "global.h" #include "assets/ast_enmy_planet.h" #include "assets/ast_zoness.h" +#include "port/interpolation/FrameInterpolation.h" typedef struct { f32 id;