Add MSVC 2022 libretro support

This commit is contained in:
Andy Vandijck 2025-05-08 17:18:41 +02:00
parent 07c7bb40a1
commit 2f92dd73b1
2 changed files with 732 additions and 627 deletions

View File

@ -16,7 +16,7 @@ std::wstring ToUTF16(const char* utf8) {
} }
std::wstring result(len, 0); std::wstring result(len, 0);
MultiByteToWideChar(CP_UTF8, 0, utf8, -1, result.data(), len); MultiByteToWideChar(CP_UTF8, 0, utf8, -1, (LPWSTR)result.data(), len);
return result; return result;
} }

File diff suppressed because it is too large Load Diff