diff options
| author | flacs <tilkax@gmail.com> | 2015-07-23 20:43:45 +0200 |
|---|---|---|
| committer | flacs <tilkax@gmail.com> | 2015-07-23 20:43:45 +0200 |
| commit | 9e4dae4a036fdc2f0a78e04a4215cd24c5c3ca0f (patch) | |
| tree | caafe38b48261c93c6c32c49757cedb8501a411a /Source | |
| parent | ed50d61287a3ee68a8f8ad6e5a4e52d89dfb78f3 (diff) | |
| parent | 0babb806525fcf171f137e8c2e946845d17f2a43 (diff) | |
Merge pull request #2771 from lioncash/fmt
PostProcessingConfigDialog: Remove an unnecessary format call
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DolphinWX/PostProcessingConfigDiag.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/PostProcessingConfigDiag.cpp b/Source/Core/DolphinWX/PostProcessingConfigDiag.cpp index 1954ee7a4f..343fa27f5e 100644 --- a/Source/Core/DolphinWX/PostProcessingConfigDiag.cpp +++ b/Source/Core/DolphinWX/PostProcessingConfigDiag.cpp @@ -21,8 +21,7 @@ #include "VideoCommon/RenderBase.h" PostProcessingConfigDiag::PostProcessingConfigDiag(wxWindow* parent, const std::string& shader) - : wxDialog(parent, wxID_ANY, - wxString::Format(_("Post Processing Shader Configuration"))), + : wxDialog(parent, wxID_ANY, _("Post Processing Shader Configuration")), m_shader(shader) { // Depending on if we are running already, either use the one from the videobackend |
