summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorLioncash <mai.iam2048@gmail.com>2023-05-16 14:23:21 -0400
committerLioncash <mai.iam2048@gmail.com>2023-05-16 14:23:21 -0400
commit954afd81ec62deb0af09ea4721b9edacaf170d1b (patch)
treea55534a7e2ccc5a7f0291eaab4855da152fb268b /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parentd368c989e7dce342626c1a0afd9258eb149d5299 (diff)
StringUtil: Move CommandLineToUtf8Argv() into 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)