diff options
| author | Stenzek <stenzek@users.noreply.github.com> | 2016-11-28 20:03:50 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-28 20:03:50 +1000 |
| commit | 681294586b3267f12d4c1632d9ff07e1298b58a6 (patch) | |
| tree | c4bc2e30221d8a8c59feb25f464f8d06ed65c102 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | e66373b7ffb36b385efe74fec3c897a851568bea (diff) | |
| parent | 6d0b9b816fd44666f31d5cd0435b2b40375a7e85 (diff) | |
Merge pull request #4455 from stenzek/png-frame-dumping
VideoCommon: Support dumping frames to images
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 115dbf8162..123d7e9e58 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -71,6 +71,7 @@ void VideoConfig::Load(const std::string& ini_file) settings->Get("ConvertHiresTextures", &bConvertHiresTextures, 0); settings->Get("CacheHiresTextures", &bCacheHiresTextures, 0); settings->Get("DumpEFBTarget", &bDumpEFBTarget, 0); + settings->Get("DumpFramesAsImages", &bDumpFramesAsImages, 0); settings->Get("FreeLook", &bFreeLook, 0); settings->Get("UseFFV1", &bUseFFV1, 0); settings->Get("EnablePixelLighting", &bEnablePixelLighting, 0); @@ -287,6 +288,7 @@ void VideoConfig::Save(const std::string& ini_file) settings->Set("ConvertHiresTextures", bConvertHiresTextures); settings->Set("CacheHiresTextures", bCacheHiresTextures); settings->Set("DumpEFBTarget", bDumpEFBTarget); + settings->Set("DumpFramesAsImages", bDumpFramesAsImages); settings->Set("FreeLook", bFreeLook); settings->Set("UseFFV1", bUseFFV1); settings->Set("EnablePixelLighting", bEnablePixelLighting); |
