diff --git a/misc/tools/fft-normalmap-to-heightmap.c b/misc/tools/fft-normalmap-to-heightmap.c index c8e1127..dc48967 100644 --- a/misc/tools/fft-normalmap-to-heightmap.c +++ b/misc/tools/fft-normalmap-to-heightmap.c @@ -841,13 +841,13 @@ int Image_WriteTGABGRA (const char *filename, int width, int height, const unsig int usage(const char *me) { printf("Usage: %s [ []] (get heightmap from normalmap)\n", me); - printf("or: %s -1 [] (read from R, Diff)\n", me); + printf("or: %s -1 [] (read from B, Diff)\n", me); printf("or: %s -2 [] (read from G, Diff)\n", me); printf("or: %s -3 [] (read from R, Diff)\n", me); printf("or: %s -4 [] (read from A, Diff)\n", me); printf("or: %s -5 [] (read from (R+G+B)/3, Diff)\n", me); printf("or: %s -6 [] (read from Y, Diff)\n", me); - printf("or: %s -7 [] (read from R, FFT)\n", me); + printf("or: %s -7 [] (read from B, FFT)\n", me); printf("or: %s -8 [] (read from G, FFT)\n", me); printf("or: %s -9 [] (read from R, FFT)\n", me); printf("or: %s -10 [] (read from A, FFT)\n", me);