From f9badc2b7c970d5ae8c2d5c50268c418a5ef36db Mon Sep 17 00:00:00 2001 From: skidau Date: Sun, 14 Dec 2014 14:38:35 +1100 Subject: [PATCH] Gave the GPU determinism game property its own ID so that changing it to "Not Set" does not disable the emulation issues textbox. --- Source/Core/DolphinWX/ISOProperties.cpp | 2 +- Source/Core/DolphinWX/ISOProperties.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp index 85c101c0f0..310d981623 100644 --- a/Source/Core/DolphinWX/ISOProperties.cpp +++ b/Source/Core/DolphinWX/ISOProperties.cpp @@ -424,7 +424,7 @@ void CISOProperties::CreateGUIControls(bool IsWad) arrayStringFor_GPUDeterminism.Add(_("auto")); arrayStringFor_GPUDeterminism.Add(_("none")); arrayStringFor_GPUDeterminism.Add(_("fake-completion")); - GPUDeterminism = new wxChoice(m_GameConfig, ID_EMUSTATE, wxDefaultPosition, wxDefaultSize, arrayStringFor_GPUDeterminism); + GPUDeterminism = new wxChoice(m_GameConfig, ID_GPUDETERMINISM, wxDefaultPosition, wxDefaultSize, arrayStringFor_GPUDeterminism); sGPUDeterminism->Add(GPUDeterminismText); sGPUDeterminism->Add(GPUDeterminism); diff --git a/Source/Core/DolphinWX/ISOProperties.h b/Source/Core/DolphinWX/ISOProperties.h index 0863818203..31c2680f01 100644 --- a/Source/Core/DolphinWX/ISOProperties.h +++ b/Source/Core/DolphinWX/ISOProperties.h @@ -149,6 +149,7 @@ private: ID_EDITCHEAT, ID_ADDCHEAT, ID_REMOVECHEAT, + ID_GPUDETERMINISM, ID_NAME, ID_GAMEID,