mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #8905 from JosJuice/jni-encoding
Android: Use correct encoding when converting strings
This commit is contained in:
@ -110,7 +110,7 @@ std::vector<std::string> GetAdapterNames()
|
||||
std::string name;
|
||||
DXGI_ADAPTER_DESC desc;
|
||||
if (SUCCEEDED(adapter->GetDesc(&desc)))
|
||||
name = UTF16ToUTF8(desc.Description);
|
||||
name = WStringToUTF8(desc.Description);
|
||||
|
||||
adapters.push_back(std::move(name));
|
||||
}
|
||||
|
Reference in New Issue
Block a user