diff options
author | Seth Barberee <seth.barberee@gmail.com> | 2021-02-19 16:01:53 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-19 18:01:53 -0600 |
commit | c754c2a0466d8394c7ffcb3a515199d5703e47be (patch) | |
tree | 42463d69e3642a4ada17614cac4653a02dac9338 /include/constants/personality_test.h | |
parent | 8dfd044ef3a6ea8da204265b4560716aa67391d1 (diff) |
Decomp more of personality_test (#27)
* decomp most of personality_test
* just gonna move the funcs to src in assembly for now so I can combine stuff
* label another func and some cleanup
* one func of personality test left in asm
* small cleanups and labeling of funcs
Diffstat (limited to 'include/constants/personality_test.h')
-rw-r--r-- | include/constants/personality_test.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/constants/personality_test.h b/include/constants/personality_test.h new file mode 100644 index 0000000..c711b3c --- /dev/null +++ b/include/constants/personality_test.h @@ -0,0 +1,12 @@ +#ifndef GUARD_CONSTANTS_PERSONALITY_TEST_H +#define GUARD_CONSTANTS_PERSONALITY_TEST_H + +#define NUM_PARTNERS 10 +#define NUM_PERSONALITIES 13 +#define NUM_QUIZ_QUESTIONS 55 +#define MAX_ASKED_QUESTIONS 8 + +#define MALE 0 +#define FEMALE 1 + +#endif |