summaryrefslogtreecommitdiff
path: root/tools/nitrogfx/gfx.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/nitrogfx/gfx.c')
-rw-r--r--tools/nitrogfx/gfx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nitrogfx/gfx.c b/tools/nitrogfx/gfx.c
index ad2b313e..7b17a7b1 100644
--- a/tools/nitrogfx/gfx.c
+++ b/tools/nitrogfx/gfx.c
@@ -384,7 +384,7 @@ void WriteNtrPalette(char *path, struct Palette *palette, bool ncpr)
FILE *fp = fopen(path, "wb");
if (fp == NULL)
- FATAL_ERROR("Failed too open \"%s\" for writing.\n", path);
+ FATAL_ERROR("Failed to open \"%s\" for writing.\n", path);
uint32_t size = palette->numColors * 2;
uint32_t extSize = size + (ncpr ? 0x10 : 0x18);