diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-02-07 19:10:12 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-07 21:10:12 -0600 |
commit | 8dfd044ef3a6ea8da204265b4560716aa67391d1 (patch) | |
tree | 15274fab1fd9b1d4e477bbfddbfb855ade1eabeb /src/credits.c | |
parent | 74daf03fd70e7c71b92390c9133c9dd543bcb28d (diff) |
Some Personality and data (#26)
* decomp few personality funcs and clean up some pointers in the dungeon data
* de-pointer-ify friend area dialogue
* clean pointers on a personality test question
* decomp a few more main menu funcs and dump some more data
* label some funcs
Diffstat (limited to 'src/credits.c')
-rw-r--r-- | src/credits.c | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/credits.c b/src/credits.c new file mode 100644 index 0000000..2f499fb --- /dev/null +++ b/src/credits.c @@ -0,0 +1,33 @@ +#include "global.h" + +extern s32 sub_80144A4(s32 *); +extern void sub_80338C4(u32); +extern void sub_80338C4(u32); + +void sub_8035404(u32 param_1) +{ + s32 iVar1; + + if(sub_80144A4(&iVar1) == 0){ + sub_80338C4(param_1); + } +} + +void sub_8035424(void) +{ + sub_80338C4(6); +} + +void sub_8035430(void) +{ + sub_80338C4(0x4F); +} + +void nullsub_50(void) +{ +} + +void nullsub_51(void) +{ +} + |