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:
Edit:I guess I shouldn't edit the .po since that is done on a different site fixed
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: