summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Input/InputConfigDiag.cpp
diff options
context:
space:
mode:
authorshuffle2 <godisgovernment@gmail.com>2017-06-23 17:32:15 -0700
committerGitHub <noreply@github.com>2017-06-23 17:32:15 -0700
commitced53e29200e3d02dbbc218bccc8b8a8826ef7a7 (patch)
treeed4cb548a2864fa52b4d78d4251a53e4e87c792b /Source/Core/DolphinWX/Input/InputConfigDiag.cpp
parent1bd177561bf54e58855237e6c30c7bcaa39ab7e2 (diff)
parenta66b747366c8dc36cb4ed6f40efee679e9516749 (diff)
Merge pull request #5659 from shuffle2/gamelist-speedup-with-emustate
Gamelist speedup with emustate
Diffstat (limited to 'Source/Core/DolphinWX/Input/InputConfigDiag.cpp')
-rw-r--r--Source/Core/DolphinWX/Input/InputConfigDiag.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinWX/Input/InputConfigDiag.cpp b/Source/Core/DolphinWX/Input/InputConfigDiag.cpp
index f1e4e7e2f9..8aaa51ccb0 100644
--- a/Source/Core/DolphinWX/Input/InputConfigDiag.cpp
+++ b/Source/Core/DolphinWX/Input/InputConfigDiag.cpp
@@ -264,7 +264,7 @@ void InputConfigDialog::UpdateProfileComboBox()
pname += PROFILES_PATH;
pname += m_config.GetProfileName();
- std::vector<std::string> sv = Common::DoFileSearch({".ini"}, {pname});
+ std::vector<std::string> sv = Common::DoFileSearch({pname}, {".ini"});
wxArrayString strs;
for (const std::string& filename : sv)