Finish decompiling intro

This commit is contained in:
Diegoisawesome
2018-02-15 22:30:39 -06:00
parent 34716558b1
commit 0a206ee52c
12 changed files with 1696 additions and 1779 deletions

View File

@@ -35,6 +35,12 @@
// Converts a number to Q4.12 fixed-point format
#define Q_4_12(n) ((s16)((n) * 4096))
// Converts a Q8.8 fixed-point format number to a regular integer
#define Q_8_8_TO_INT(n) ((int)((n) / 256))
// Converts a Q4.12 fixed-point format number to a regular integer
#define Q_4_12_TO_INT(n) ((int)((n) / 4096))
#define PARTY_SIZE 6
#define POKEMON_NAME_LENGTH 10