summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authorStevoisiak <Stevoisiak@gmail.com>2015-03-13 17:59:30 -0400
committerStevoisiak <Stevoisiak@gmail.com>2015-03-13 17:59:30 -0400
commit4f71b717cc2ce2b35df953533735bb6ece278609 (patch)
tree3047f125ce1417b7a92b10b7ac47a22d7b5a7d05 /Source
parentefb64c1885e19c3ebcc32206105146dd845d2b15 (diff)
ConfigMain: Change _NTSC to ForceNTSCJ
This is consistent with the name of the setting in dolphin.ini
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/DolphinWX/ConfigMain.cpp12
-rw-r--r--Source/Core/DolphinWX/ConfigMain.h2
2 files changed, 7 insertions, 7 deletions
diff --git a/Source/Core/DolphinWX/ConfigMain.cpp b/Source/Core/DolphinWX/ConfigMain.cpp
index 42a0924a30..af3e50408b 100644
--- a/Source/Core/DolphinWX/ConfigMain.cpp
+++ b/Source/Core/DolphinWX/ConfigMain.cpp
@@ -232,7 +232,7 @@ void CConfigMain::UpdateGUI()
EnableCheats->Disable();
CPUEngine->Disable();
- _NTSCJ->Disable();
+ ForceNTSCJ->Disable();
// Disable stuff on AudioPage
DSPEngine->Disable();
@@ -347,7 +347,7 @@ void CConfigMain::InitializeGUIValues()
for (unsigned int a = 0; a < (sizeof(CPUCores) / sizeof(CPUCore)); ++a)
if (CPUCores[a].CPUid == startup_params.iCPUCore)
CPUEngine->SetSelection(a);
- _NTSCJ->SetValue(startup_params.bForceNTSCJ);
+ ForceNTSCJ->SetValue(startup_params.bForceNTSCJ);
// Display - Interface
@@ -480,7 +480,7 @@ void CConfigMain::InitializeGUITooltips()
Framelimit->SetToolTip(_("Limits the game speed to the specified number of frames per second (full speed is 60 for NTSC and 50 for PAL)."));
// General - Advanced
- _NTSCJ->SetToolTip(_("Forces NTSC-J mode for using the Japanese ROM font.\nIf left unchecked, Dolphin defaults to NTSC-U and automatically enables this setting when playing Japanese games."));
+ ForceNTSCJ->SetToolTip(_("Forces NTSC-J mode for using the Japanese ROM font.\nIf left unchecked, Dolphin defaults to NTSC-U and automatically enables this setting when playing Japanese games."));
// Display - Interface
ConfirmStop->SetToolTip(_("Show a confirmation box before stopping a game."));
@@ -547,7 +547,7 @@ void CConfigMain::CreateGUIControls()
Framelimit = new wxChoice(GeneralPage, ID_FRAMELIMIT, wxDefaultPosition, wxDefaultSize, arrayStringFor_Framelimit);
// Core Settings - Advanced
CPUEngine = new wxRadioBox(GeneralPage, ID_CPUENGINE, _("CPU Emulator Engine"), wxDefaultPosition, wxDefaultSize, arrayStringFor_CPUEngine, 0, wxRA_SPECIFY_ROWS);
- _NTSCJ = new wxCheckBox(GeneralPage, ID_NTSCJ, _("Force Console as NTSC-J"));
+ ForceNTSCJ = new wxCheckBox(GeneralPage, ID_NTSCJ, _("Force Console as NTSC-J"));
// Populate the General settings
wxBoxSizer* sFramelimit = new wxBoxSizer(wxHORIZONTAL);
@@ -562,7 +562,7 @@ void CConfigMain::CreateGUIControls()
wxStaticBoxSizer* const sbAdvanced = new wxStaticBoxSizer(wxVERTICAL, GeneralPage, _("Advanced Settings"));
sbAdvanced->Add(CPUEngine, 0, wxALL, 5);
- sbAdvanced->Add(_NTSCJ, 0, wxALL, 5);
+ sbAdvanced->Add(ForceNTSCJ, 0, wxALL, 5);
wxBoxSizer* const sGeneralPage = new wxBoxSizer(wxVERTICAL);
sGeneralPage->Add(sbBasic, 0, wxEXPAND | wxALL, 5);
@@ -906,7 +906,7 @@ void CConfigMain::CoreSettingsChanged(wxCommandEvent& event)
}
break;
case ID_NTSCJ:
- startup_params.bForceNTSCJ = _NTSCJ->IsChecked();
+ startup_params.bForceNTSCJ = ForceNTSCJ->IsChecked();
break;
case ID_ENABLEOVERCLOCK:
SConfig::GetInstance().m_OCEnable = EnableOC->IsChecked();
diff --git a/Source/Core/DolphinWX/ConfigMain.h b/Source/Core/DolphinWX/ConfigMain.h
index f542187ac5..ef7265ad9f 100644
--- a/Source/Core/DolphinWX/ConfigMain.h
+++ b/Source/Core/DolphinWX/ConfigMain.h
@@ -146,7 +146,7 @@ private:
// Advanced
wxRadioBox* CPUEngine;
- wxCheckBox* _NTSCJ;
+ wxCheckBox* ForceNTSCJ;
wxSlider* OCSlider;
wxStaticText* OCText;
wxCheckBox* EnableOC;