diff options
author | huderlem <huderlem@gmail.com> | 2019-08-03 20:06:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-03 20:06:17 -0500 |
commit | 71442a109c3859d1a1e1418924a1a56823b9631c (patch) | |
tree | ef04c74a98cafa7da2b3556d6af4067555b9e498 /include/global.h | |
parent | c427a4af00fa46f33f7167977ea834218c37cfa8 (diff) | |
parent | b97a0894bfa099ba5ec8363f8cdc08a1c0d9e6db (diff) |
Merge pull request #3 from camthesaxman/headers
move all externs to header files and update m4a library
Diffstat (limited to 'include/global.h')
-rwxr-xr-x | include/global.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/global.h b/include/global.h index 16b8e51..2a9b072 100755 --- a/include/global.h +++ b/include/global.h @@ -4,6 +4,13 @@ #include <string.h> #include "gba/gba.h" +#define NUM_SPRITE_GROUPS 100 +#define MAX_SPRITES_IN_GROUP 22 + +#include "types.h" +#include "functions.h" +#include "variables.h" + // Prevent cross-jump optimization. #define BLOCK_CROSS_JUMP asm(""); |