(svn r6068) -Codechange: Switch PNG and BMP priority for screenshots. This ensures PNG is used by default when available. (hylje)
authormatthijs
Wed, 23 Aug 2006 15:30:03 +0000
changeset 4360 07fb51363337
parent 4359 c73b9516ff39
child 4361 4cdf23165fcf
(svn r6068) -Codechange: Switch PNG and BMP priority for screenshots. This ensures PNG is used by default when available. (hylje)
screenshot.c
--- a/screenshot.c	Wed Aug 23 13:55:56 2006 +0000
+++ b/screenshot.c	Wed Aug 23 15:30:03 2006 +0000
@@ -416,10 +416,10 @@
 //************************************************
 
 static const ScreenshotFormat _screenshot_formats[] = {
-	{"BMP", "bmp", &MakeBmpImage},
 #if defined(WITH_PNG)
 	{"PNG", "png", &MakePNGImage},
 #endif
+	{"BMP", "bmp", &MakeBmpImage},
 	{"PCX", "pcx", &MakePCXImage},
 };