summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2015-11-24 14:17:49 +1300
committerScott Mansell <phiren@gmail.com>2015-11-24 14:17:49 +1300
commit211169e307ef45bf1982c8a62f785e1e32f4e1aa (patch)
tree63a320fbf626c0e8cf88dd402454cfc4ceb21f23 /Source/Core
parent83bda3be469b1669b0a5d4c4cb53ae2886b695e2 (diff)
parent1c8938cd595f1e0d4b4695ee508e04e30378f637 (diff)
Merge pull request #3269 from JosJuice/purge-cache
Rename "Purge Cache" to "Purge Game List Cache"
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/Frame.cpp2
-rw-r--r--Source/Core/DolphinWX/FrameTools.cpp4
-rw-r--r--Source/Core/DolphinWX/Globals.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/DolphinWX/Frame.cpp b/Source/Core/DolphinWX/Frame.cpp
index 60d9075b6e..83fb8b10f6 100644
--- a/Source/Core/DolphinWX/Frame.cpp
+++ b/Source/Core/DolphinWX/Frame.cpp
@@ -297,7 +297,7 @@ EVT_MENU(IDM_TOGGLE_STATUSBAR, CFrame::OnToggleStatusbar)
EVT_MENU_RANGE(IDM_LOG_WINDOW, IDM_VIDEO_WINDOW, CFrame::OnToggleWindow)
EVT_MENU_RANGE(IDM_SHOW_SYSTEM, IDM_SHOW_STATE, CFrame::OnChangeColumnsVisible)
-EVT_MENU(IDM_PURGE_CACHE, CFrame::GameListChanged)
+EVT_MENU(IDM_PURGE_GAME_LIST_CACHE, CFrame::GameListChanged)
EVT_MENU(IDM_SAVE_FIRST_STATE, CFrame::OnSaveFirstState)
EVT_MENU(IDM_UNDO_LOAD_STATE, CFrame::OnUndoLoadState)
diff --git a/Source/Core/DolphinWX/FrameTools.cpp b/Source/Core/DolphinWX/FrameTools.cpp
index eaf732be01..b1ac0f4db8 100644
--- a/Source/Core/DolphinWX/FrameTools.cpp
+++ b/Source/Core/DolphinWX/FrameTools.cpp
@@ -345,7 +345,7 @@ wxMenuBar* CFrame::CreateMenu()
viewMenu->AppendCheckItem(IDM_LIST_DRIVES, _("Show Drives"));
viewMenu->Check(IDM_LIST_DRIVES, SConfig::GetInstance().m_ListDrives);
- viewMenu->Append(IDM_PURGE_CACHE, _("Purge Cache"));
+ viewMenu->Append(IDM_PURGE_GAME_LIST_CACHE, _("Purge Game List Cache"));
wxMenu *columnsMenu = new wxMenu;
viewMenu->AppendSubMenu(columnsMenu, _("Select Columns"));
@@ -1953,7 +1953,7 @@ void CFrame::GameListChanged(wxCommandEvent& event)
case IDM_LIST_DRIVES:
SConfig::GetInstance().m_ListDrives = event.IsChecked();
break;
- case IDM_PURGE_CACHE:
+ case IDM_PURGE_GAME_LIST_CACHE:
std::vector<std::string> rFilenames = DoFileSearch({".cache"}, {File::GetUserPath(D_CACHE_IDX)});
for (const std::string& rFilename : rFilenames)
diff --git a/Source/Core/DolphinWX/Globals.h b/Source/Core/DolphinWX/Globals.h
index c784e94479..57e6c8e1df 100644
--- a/Source/Core/DolphinWX/Globals.h
+++ b/Source/Core/DolphinWX/Globals.h
@@ -149,7 +149,7 @@ enum
IDM_LIST_WORLD,
IDM_LIST_UNKNOWN,
IDM_LIST_DRIVES,
- IDM_PURGE_CACHE,
+ IDM_PURGE_GAME_LIST_CACHE,
// Help menu
IDM_HELP_WEBSITE,