summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2023-05-17 09:13:36 +0200
committerGitHub <noreply@github.com>2023-05-17 09:13:36 +0200
commit11768e3dd3e998bb874c919b96ae775826d6bd86 (patch)
tree97e72c6de727056e1cb2d5842890f0dd28af2f4e /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parentfede2ab9a993a1bc0baa2a9f42f6446e10dfee2d (diff)
parent1a2b48c2047c367a2bbf3ca0dc73207053fb523b (diff)
Merge pull request #11829 from lioncash/strutil
Common/StringUtil: Move some utilities into the Common namespace
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
-rw-r--r--Source/Core/DolphinNoGUI/MainNoGUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
index e8bb0958ab..9ba5de1e98 100644
--- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp
+++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
@@ -316,7 +316,7 @@ int main(int argc, char* argv[])
#ifdef _WIN32
int wmain(int, wchar_t*[], wchar_t*[])
{
- std::vector<std::string> args = CommandLineToUtf8Argv(GetCommandLineW());
+ std::vector<std::string> args = Common::CommandLineToUtf8Argv(GetCommandLineW());
const int argc = static_cast<int>(args.size());
std::vector<char*> argv(args.size());
for (size_t i = 0; i < args.size(); ++i)