Dolphin, the GameCube and Wii emulator - Forums

Full Version: [PATCH] Video Hacks Tab Rename
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
So I made a patch to rename the "Hacks" tab in the video section to "Speed Hacks" and wanted to make sure I set it up right:

Code:
Source/Core/DolphinWX/Src/VideoConfigDiag.cpp |  2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp b/Source/Core/DolphinWX/Src/VideoConfigDiag.cppindex
cd5f966..d972e03 100644
--- a/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp
+++ b/Source/Core/DolphinWX/Src/VideoConfigDiag.cpp
@@ -429,7 +429,7 @@ VideoConfigDiag::VideoConfigDiag(wxWindow* parent, const std::string &title, con
    // -- SPEED HACKS --
    {
    wxPanel* const page_hacks = new wxPanel(notebook, -1, wxDefaultPosition);
-    notebook->AddPage(page_hacks, _("Hacks"));
+    notebook->AddPage(page_hacks, _("Speed Hacks"));
    wxBoxSizer* const szr_hacks = new wxBoxSizer(wxVERTICAL);
  
    // - EFB hacks

Edit: I guess I shouldn't edit the .po since that is done on a different site fixed
Yeah, don't edit the .po
Fixed
Here is the actual .patch if anyone wants *looks around*