diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-09-06 11:44:50 -0500 |
---|---|---|
committer | Marcus Huderle <huderlem@gmail.com> | 2018-09-06 11:44:50 -0500 |
commit | 78cdd97c8b958fa60ab0d70201360835aac985c6 (patch) | |
tree | e098490c90279eda8ab1c614ac3667086aa17118 /tools/gbagfx/gfx.h | |
parent | f8f7a8e300eb07935a535996b169682810380a92 (diff) |
Add ability to specify metatile dimensions to gbagfx
Diffstat (limited to 'tools/gbagfx/gfx.h')
-rw-r--r-- | tools/gbagfx/gfx.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gbagfx/gfx.h b/tools/gbagfx/gfx.h index ecd436652..5355ced85 100644 --- a/tools/gbagfx/gfx.h +++ b/tools/gbagfx/gfx.h @@ -27,8 +27,8 @@ struct Image { bool hasTransparency; }; -void ReadImage(char *path, int tilesWidth, int bitDepth, struct Image *image, bool invertColors); -void WriteImage(char *path, int numTiles, int bitDepth, struct Image *image, bool invertColors); +void ReadImage(char *path, int tilesWidth, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors); +void WriteImage(char *path, int numTiles, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors); void FreeImage(struct Image *image); void ReadGbaPalette(char *path, struct Palette *palette); void WriteGbaPalette(char *path, struct Palette *palette); |