From dc5c55a81945aa18933faa140c1f0a4df1f7067c Mon Sep 17 00:00:00 2001 From: matthijs Date: Wed, 23 Aug 2006 15:30:03 +0000 Subject: [PATCH] (svn r6068) -Codechange: Switch PNG and BMP priority for screenshots. This ensures PNG is used by default when available. (hylje) --- screenshot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenshot.c b/screenshot.c index a1bbd3fa91..3c134cdcc4 100644 --- a/screenshot.c +++ b/screenshot.c @@ -416,10 +416,10 @@ static bool MakePCXImage(const char *name, ScreenshotCallback *callb, void *user //************************************************ static const ScreenshotFormat _screenshot_formats[] = { - {"BMP", "bmp", &MakeBmpImage}, #if defined(WITH_PNG) {"PNG", "png", &MakePNGImage}, #endif + {"BMP", "bmp", &MakeBmpImage}, {"PCX", "pcx", &MakePCXImage}, };