mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-25 09:50:15 +00:00
Update string_util.cpp
This commit is contained in:
parent
bd3c722581
commit
de4059eef0
@ -324,7 +324,7 @@ static std::wstring CPToUTF16(u32 code_page, const std::string& input)
|
||||
{
|
||||
auto const size = MultiByteToWideChar(code_page, 0, input.data(), static_cast<int>(input.size()), nullptr, 0);
|
||||
|
||||
std::wstring output;
|
||||
std::wstring output;
|
||||
output.resize(size);
|
||||
|
||||
if (size == 0 || size != MultiByteToWideChar(code_page, 0, input.data(), static_cast<int>(input.size()), &output[0], static_cast<int>(output.size())))
|
||||
|
Loading…
Reference in New Issue
Block a user