diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2022-01-21 09:55:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-21 09:55:43 -0500 |
commit | 79dfac92c9bdd7ea25e31f152c01041eb1ad25b4 (patch) | |
tree | 2942e136869ad2362f4d24e803ed172584df1bdf /include/pokemon.h | |
parent | 874317268616ce045afcfcfc8ecafe6480081398 (diff) | |
parent | 30d970441839e8b2473f6962ab9b70f4f8422507 (diff) |
Merge pull request #1604 from GriffinRichards/clean-spinda
Document Spinda spot algorithm
Diffstat (limited to 'include/pokemon.h')
-rw-r--r-- | include/pokemon.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/pokemon.h b/include/pokemon.h index 28460bbe6..8039a4fdd 100644 --- a/include/pokemon.h +++ b/include/pokemon.h @@ -239,10 +239,13 @@ struct BattleMove u8 flags; }; +#define SPINDA_SPOT_WIDTH 16 +#define SPINDA_SPOT_HEIGHT 16 + struct SpindaSpot { u8 x, y; - u16 image[16]; + u16 image[SPINDA_SPOT_HEIGHT]; }; struct __attribute__((packed)) LevelUpMove |