(svn r6068) -Codechange: Switch PNG and BMP priority for screenshots. This ensures PNG is used by default when available. (hylje)

This commit is contained in:
matthijs 2006-08-23 15:30:03 +00:00
parent bdc91f54d7
commit dc5c55a819

View File

@ -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},
};