diff options
author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-07-19 20:57:35 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-19 20:57:35 +0300 |
commit | 7cd7b320d3336bdfe57b0a9d12174e32b242c088 (patch) | |
tree | a7e3ac1a7289b199ee975a3cb33ea43284d98d55 /tools/nitrogfx/gfx.h | |
parent | 453ccaf11724bb7e96f0e12e4520161f52056520 (diff) | |
parent | e312ef2117a7ffaffb05f84e2526b947a4591c69 (diff) |
Merge pull request #241 from red031000/master
extract all trainer back sprites + palette indexes
Diffstat (limited to 'tools/nitrogfx/gfx.h')
-rw-r--r-- | tools/nitrogfx/gfx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nitrogfx/gfx.h b/tools/nitrogfx/gfx.h index ef1f493d..e04a781a 100644 --- a/tools/nitrogfx/gfx.h +++ b/tools/nitrogfx/gfx.h @@ -34,7 +34,7 @@ void WriteImage(char *path, int numTiles, int bitDepth, int metatileWidth, int m void WriteNtrImage(char *path, int numTiles, int bitDepth, int metatileWidth, int metatileHeight, struct Image *image, bool invertColors, bool clobberSize, bool byteOrder, bool version101, bool sopc, bool scanned, uint32_t key); void FreeImage(struct Image *image); void ReadGbaPalette(char *path, struct Palette *palette); -void ReadNtrPalette(char *path, struct Palette *palette, int bitdepth); +void ReadNtrPalette(char *path, struct Palette *palette, int bitdepth, int palIndex); void WriteGbaPalette(char *path, struct Palette *palette); void WriteNtrPalette(char *path, struct Palette *palette, bool ncpr, bool ir, int bitdepth, bool pad, int compNum); |