diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-12 19:17:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-12 19:17:24 -0500 |
commit | 43033ec97cfe3ea3128a93c079cf4a525ce3fbbf (patch) | |
tree | 8b4d1c41cc6e18d6809c7c228997fb895e3829ae /include/data.h | |
parent | a34c9d09b6b4da949ec6da6fa31b9f6eb12bdbee (diff) | |
parent | 1b84bd395d4abff523dd800906083a47f492e866 (diff) |
Merge pull request #390 from GriffinRichards/fix-constwarning
Fix warning about gMonPaletteTable section
Diffstat (limited to 'include/data.h')
-rw-r--r-- | include/data.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/data.h b/include/data.h index 1a91d6f62..19da0034f 100644 --- a/include/data.h +++ b/include/data.h @@ -27,7 +27,7 @@ extern const struct MonCoords gMonFrontPicCoords[]; extern const struct CompressedSpriteSheet gMonFrontPicTable[]; extern const struct MonCoords gMonBackPicCoords[]; extern const struct CompressedSpriteSheet gMonBackPicTable[]; -extern struct CompressedSpritePalette gMonPaletteTable[]; +extern const struct CompressedSpritePalette gMonPaletteTable[]; extern const struct CompressedSpritePalette gMonShinyPaletteTable[]; extern const union AnimCmd *const *const gTrainerFrontAnimsPtrTable[]; extern const struct MonCoords gTrainerFrontPicCoords[]; |