Put const data in clothesRack

This commit is contained in:
Tal Hayon
2022-04-16 14:10:32 +03:00
parent b3900c84e0
commit 08211a573a
3 changed files with 8 additions and 12 deletions
+7 -2
View File
@@ -1,9 +1,14 @@
#include "npc.h"
extern void (*gUnk_0811423C[])(Entity*);
void sub_0806DD90(Entity*);
void sub_0806DEC8(Entity*);
void ClothesRack(Entity* this) {
gUnk_0811423C[this->action](this);
static void (*const actionFuncs[])(Entity*) = {
sub_0806DD90,
sub_0806DEC8,
};
actionFuncs[this->action](this);
}
void sub_0806DD90(Entity* this) {