mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
StringUtil: Move CommandLineToUtf8Argv() into Common namespace
This commit is contained in:
@ -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)
|
||||
|
Reference in New Issue
Block a user