From b8ce2cf8b8329cf8b8bdd6aba8831bfbc93d56e3 Mon Sep 17 00:00:00 2001 From: John Tsiombikas Date: Wed, 12 May 2021 09:40:31 +0300 Subject: [PATCH] pngdump fix: previous commit inadvertently made PNG output the default mode. Restore raw dump as the default. --- tools/pngdump/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pngdump/main.c b/tools/pngdump/main.c index 2d1922e..edbbba5 100644 --- a/tools/pngdump/main.c +++ b/tools/pngdump/main.c @@ -6,9 +6,9 @@ #include "image.h" enum { - MODE_PNG, MODE_PIXELS, MODE_CMAP, + MODE_PNG, MODE_INFO }; -- 1.7.10.4