From 778f8efb65326d32be75d4d31fdd789db8594697 Mon Sep 17 00:00:00 2001 From: Marcus Wanners Date: Wed, 6 May 2009 18:07:28 +0000 Subject: [PATCH] Fix the message, for good. See the comments to r3146 for more info on the choice of this particular term. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3160 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/DolphinWX/Src/ISOProperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/Src/ISOProperties.cpp b/Source/Core/DolphinWX/Src/ISOProperties.cpp index 157f9b13ae..1e9776a4e1 100644 --- a/Source/Core/DolphinWX/Src/ISOProperties.cpp +++ b/Source/Core/DolphinWX/Src/ISOProperties.cpp @@ -258,7 +258,7 @@ void CISOProperties::CreateGUIControls() ////////////////////////////////////////////////////////////////////////// // GameConfig editing - Overrides and emulation state sbGameConfig = new wxStaticBoxSizer(wxVERTICAL, m_GameConfig, _("Game-Specific Settings")); - OverrideText = new wxStaticText(m_GameConfig, ID_OVERRIDE_TEXT, _("These settings override core Dolphin settings.\nGreyed out means the game uses Dolphin's setting."), wxDefaultPosition, wxDefaultSize); + OverrideText = new wxStaticText(m_GameConfig, ID_OVERRIDE_TEXT, _("These settings override core Dolphin settings.\nUndetermined means the game uses Dolphin's setting."), wxDefaultPosition, wxDefaultSize); // Core sbCoreOverrides = new wxStaticBoxSizer(wxVERTICAL, m_GameConfig, _("Core")); UseDualCore = new wxCheckBox(m_GameConfig, ID_USEDUALCORE, _("Enable Dual Core"), wxDefaultPosition, wxDefaultSize, wxCHK_3STATE|wxCHK_ALLOW_3RD_STATE_FOR_USER, wxDefaultValidator);