Change a variable name to match the name used in the ini file. Default screenshots to JPG.

This commit is contained in:
Henrik Rydgard 2013-07-08 00:10:23 +02:00
parent a4e95e5ce9
commit 613b9ec994
3 changed files with 5 additions and 5 deletions

View File

@ -61,7 +61,7 @@ void Config::Load(const char *iniFileName)
general->Get("NumWorkerThreads", &iNumWorkerThreads, cpu_info.num_cores);
general->Get("EnableCheats", &bEnableCheats, false);
general->Get("MaxRecent", &iMaxRecent, 12);
general->Get("ScreenshotsAsPNG", &bScreenshotAsPNG, true);
general->Get("ScreenshotsAsPNG", &bScreenshotsAsPNG, false);
// Fix issue from switching from uint (hex in .ini) to int (dec)
if (iMaxRecent == 0)
@ -210,7 +210,7 @@ void Config::Save()
general->Set("NumWorkerThreads", iNumWorkerThreads);
general->Set("MaxRecent", iMaxRecent);
general->Set("EnableCheats", bEnableCheats);
general->Set("ScreenshotsAsPNG", &bScreenshotAsPNG);
general->Set("ScreenshotsAsPNG", &bScreenshotsAsPNG);
IniFile::Section *cpu = iniFile.GetOrCreateSection("CPU");
cpu->Set("Jit", bJit);

View File

@ -49,7 +49,7 @@ public:
// General
bool bNewUI; // "Hidden" setting, does not get saved to ini file.
int iNumWorkerThreads;
bool bScreenshotAsPNG;
bool bScreenshotsAsPNG;
// Core
bool bIgnoreBadMemAccess;

View File

@ -467,7 +467,7 @@ void TakeScreenshot() {
char temp[256];
while (i < 10000){
if(g_Config.bScreenshotAsPNG)
if(g_Config.bScreenshotsAsPNG)
sprintf(temp, "screenshots/screen%05d.png", i);
else
sprintf(temp, "screenshots/screen%05d.jpg", i);
@ -488,7 +488,7 @@ void TakeScreenshot() {
memcpy(flipbuffer + y * pixel_xres * 4, buffer + (pixel_yres - y - 1) * pixel_xres * 4, pixel_xres * 4);
}
if(g_Config.bScreenshotAsPNG)
if(g_Config.bScreenshotsAsPNG)
stbi_write_png(temp, pixel_xres, pixel_yres, 4, flipbuffer, pixel_xres * 4);
else
{