VideoConfig: Rename "Full Resolution Frame Dumps" to "Internal"
What is the "full" resolution, anyway?
This commit is contained in:
parent
8985cb2f0b
commit
470e8d63b6
|
@ -62,7 +62,7 @@ void AdvancedWidget::CreateWidgets()
|
||||||
m_load_custom_textures = new GraphicsBool(tr("Load Custom Textures"), Config::GFX_HIRES_TEXTURES);
|
m_load_custom_textures = new GraphicsBool(tr("Load Custom Textures"), Config::GFX_HIRES_TEXTURES);
|
||||||
m_prefetch_custom_textures =
|
m_prefetch_custom_textures =
|
||||||
new GraphicsBool(tr("Prefetch Custom Textures"), Config::GFX_CACHE_HIRES_TEXTURES);
|
new GraphicsBool(tr("Prefetch Custom Textures"), Config::GFX_CACHE_HIRES_TEXTURES);
|
||||||
m_use_fullres_framedumps = new GraphicsBool(tr("Full Resolution Frame Dumps"),
|
m_use_fullres_framedumps = new GraphicsBool(tr("Internal Resolution Frame Dumps"),
|
||||||
Config::GFX_INTERNAL_RESOLUTION_FRAME_DUMPS);
|
Config::GFX_INTERNAL_RESOLUTION_FRAME_DUMPS);
|
||||||
m_dump_efb_target = new GraphicsBool(tr("Dump EFB Target"), Config::GFX_DUMP_EFB_TARGET);
|
m_dump_efb_target = new GraphicsBool(tr("Dump EFB Target"), Config::GFX_DUMP_EFB_TARGET);
|
||||||
m_enable_freelook = new GraphicsBool(tr("Free Look"), Config::GFX_FREE_LOOK);
|
m_enable_freelook = new GraphicsBool(tr("Free Look"), Config::GFX_FREE_LOOK);
|
||||||
|
|
|
@ -843,7 +843,7 @@ VideoConfigDiag::VideoConfigDiag(wxWindow* parent, const std::string& title)
|
||||||
Config::GFX_CACHE_HIRES_TEXTURES);
|
Config::GFX_CACHE_HIRES_TEXTURES);
|
||||||
szr_utility->Add(cache_hires_textures);
|
szr_utility->Add(cache_hires_textures);
|
||||||
|
|
||||||
szr_utility->Add(CreateCheckBox(page_advanced, _("Full Resolution Frame Dumps"),
|
szr_utility->Add(CreateCheckBox(page_advanced, _("Internal Resolution Frame Dumps"),
|
||||||
wxGetTranslation(internal_resolution_frame_dumping_desc),
|
wxGetTranslation(internal_resolution_frame_dumping_desc),
|
||||||
Config::GFX_INTERNAL_RESOLUTION_FRAME_DUMPS));
|
Config::GFX_INTERNAL_RESOLUTION_FRAME_DUMPS));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue