clean up some inlines

This commit is contained in:
LagoLunatic
2024-01-18 00:26:06 -05:00
parent f9fe5f6e99
commit 17cf09cc09
15 changed files with 77 additions and 48 deletions
+4
View File
@@ -46,6 +46,10 @@ inline s32 fpcM_ChangeLayerID(void* proc, int layerID) {
return fpcPi_Change(&((base_process_class*)proc)->mPi, layerID, fpcPi_CURRENT_e, fpcPi_CURRENT_e);
}
inline void fpcM_SetPriority(void* proc, int priority) {
fpcPi_Change(&((base_process_class*)proc)->mPi, fpcLy_CURRENT_e, priority, fpcPi_CURRENT_e);
}
inline s32 fpcM_IsJustType(int type1, int type2) {
return fpcBs_Is_JustOfType(type1, type2);
}