d_a_tag_arena OK (#283)

* d_a_tag_arena

* fix g_profile_Tag_Arena
This commit is contained in:
Pheenoh
2023-02-14 18:28:05 -07:00
committed by GitHub
parent 8951f20241
commit bb751ef962
5 changed files with 50 additions and 107 deletions
@@ -2,5 +2,17 @@
#define D_A_TAG_ARENA_H
#include "dolphin/types.h"
#include "f_op/f_op_actor_mng.h"
class daTagArena_c : public fopAc_ac_c {
public:
int create() {
if (!fopAcM_CheckCondition(this, 8)) {
new (this) daTagArena_c();
fopAcM_OnCondition(this, 8);
}
return cPhs_COMPLEATE_e;
}
};
#endif /* D_A_TAG_ARENA_H */