2023-11-12 20:47:38 +01:00
|
|
|
#ifndef __PATCHES_H__
|
|
|
|
#define __PATCHES_H__
|
|
|
|
|
2024-01-13 07:39:08 +01:00
|
|
|
// TODO fix renaming symbols in patch recompilation
|
|
|
|
#define osRecvMesg osRecvMesg_recomp
|
|
|
|
#define osSendMesg osSendMesg_recomp
|
2023-11-12 20:47:38 +01:00
|
|
|
#include "global.h"
|
2023-12-01 16:56:20 +01:00
|
|
|
#include "rt64_extended_gbi.h"
|
2023-11-12 20:47:38 +01:00
|
|
|
|
2024-03-02 19:33:09 +01:00
|
|
|
#define gEXMatrixGroupInterpolateOnlyTiles(cmd, push, proj) \
|
|
|
|
gEXMatrixGroup(cmd, G_EX_ID_IGNORE, G_EX_INTERPOLATE_SIMPLE, push, proj, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_SKIP, G_EX_COMPONENT_INTERPOLATE, G_EX_ORDER_LINEAR)
|
|
|
|
|
|
|
|
|
2023-11-24 23:10:21 +01:00
|
|
|
int recomp_printf(const char* fmt, ...);
|
2024-03-03 08:36:14 +01:00
|
|
|
float recomp_powf(float, float);
|
2023-11-24 23:10:21 +01:00
|
|
|
|
2024-02-24 22:14:48 +01:00
|
|
|
static inline void* actor_relocate(Actor* actor, void* addr) {
|
|
|
|
return (void*)((uintptr_t)addr -
|
|
|
|
(intptr_t)((uintptr_t)actor->overlayEntry->vramStart - (uintptr_t)actor->overlayEntry->loadedRamAddr));
|
|
|
|
}
|
|
|
|
|
2023-11-12 20:47:38 +01:00
|
|
|
#endif
|