diff options
author | Akira Akashi <rubenru09@aol.com> | 2021-03-30 23:28:51 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-30 23:28:51 +0100 |
commit | ffe1c98ccdc3a1dc14297b50b0cee7dd4ec94338 (patch) | |
tree | 1b56abf22d96e50a037e38fe93f6e575fb456e4b /tools/nitrogfx/options.h | |
parent | 5feba455f7b44720c5d8428dfdaf6de00faf020c (diff) | |
parent | 6a869e2a8fd8aab5c45a37ef38e3380c69e216b8 (diff) |
Merge pull request #352 from red031000/master
NCER multiple label support
Diffstat (limited to 'tools/nitrogfx/options.h')
-rw-r--r-- | tools/nitrogfx/options.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/nitrogfx/options.h b/tools/nitrogfx/options.h index f4626df9..780c83e6 100644 --- a/tools/nitrogfx/options.h +++ b/tools/nitrogfx/options.h @@ -69,16 +69,17 @@ struct Cell { short minX; short minY; struct OAM oam; - char *label; }; struct JsonToCellOptions { - bool label; + bool labelEnabled; bool extended; int imageHeight; int imageWidth; int cellCount; struct Cell **cells; + char **labels; + int labelCount; }; struct JsonToScreenOptions { |