diff options
author | red031000 <rubenru09@aol.com> | 2021-03-01 20:40:15 +0000 |
---|---|---|
committer | red031000 <rubenru09@aol.com> | 2021-03-01 20:40:15 +0000 |
commit | 4367cf2bbbb64c4a2a86fe1bb2846d2c34136f01 (patch) | |
tree | b5ab03f47ed90ee4c62d03c37359e0be316d452a /tools/nitrogfx/gfx.h | |
parent | 75dc81c75dc1dc86053303cdae9decdb2f05557d (diff) |
NCER processing
Diffstat (limited to 'tools/nitrogfx/gfx.h')
-rw-r--r-- | tools/nitrogfx/gfx.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/nitrogfx/gfx.h b/tools/nitrogfx/gfx.h index e04a781a..728e8839 100644 --- a/tools/nitrogfx/gfx.h +++ b/tools/nitrogfx/gfx.h @@ -5,6 +5,7 @@ #include <stdint.h> #include <stdbool.h> +#include "options.h" struct Color { unsigned char red; @@ -37,5 +38,6 @@ void ReadGbaPalette(char *path, struct Palette *palette); 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); +void WriteNtrCell(char *path, struct JsonToCellOptions *options); #endif // GFX_H |