diff options
-rw-r--r-- | screenshot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/screenshot.c b/screenshot.c index a1bbd3fa9..3c134cdcc 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}, }; |