From 4367cf2bbbb64c4a2a86fe1bb2846d2c34136f01 Mon Sep 17 00:00:00 2001 From: red031000 Date: Mon, 1 Mar 2021 20:40:15 +0000 Subject: NCER processing --- tools/nitrogfx/gfx.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tools/nitrogfx/gfx.h') 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 #include +#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 -- cgit v1.2.3 From eeddf7382ed11b597814342c719862895dd4412f Mon Sep 17 00:00:00 2001 From: red031000 Date: Wed, 3 Mar 2021 17:21:01 +0000 Subject: NSCR processing --- tools/nitrogfx/gfx.h | 1 + 1 file changed, 1 insertion(+) (limited to 'tools/nitrogfx/gfx.h') diff --git a/tools/nitrogfx/gfx.h b/tools/nitrogfx/gfx.h index 728e8839..d0e6521a 100644 --- a/tools/nitrogfx/gfx.h +++ b/tools/nitrogfx/gfx.h @@ -39,5 +39,6 @@ void ReadNtrPalette(char *path, struct Palette *palette, int bitdepth, int palIn 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); +void WriteNtrScreen(char *outputPath, struct JsonToScreenOptions *options); #endif // GFX_H -- cgit v1.2.3