mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-18 02:11:28 +00:00
Compilation fix 3
This commit is contained in:
parent
f6f58b7615
commit
96d7034c96
@ -314,7 +314,7 @@ int L10nConvertStr(int src_code, vm::ptr<const void> src, mem32_t src_len, int d
|
||||
if ((_L10nCodeParse(src_code, srcCode)) && (_L10nCodeParse(dst_code, dstCode)))
|
||||
{
|
||||
iconv_t ict = iconv_open(srcCode.c_str(), dstCode.c_str());
|
||||
const char *srcBuf = (const char*)src.get_ptr();
|
||||
char *srcBuf = (char*)src.get_ptr();
|
||||
char *dstBuf = (char*)dst.get_ptr();
|
||||
//char *srcBuf = (char*)src, *dstBuf = (char*)dst;
|
||||
//size_t srcLen = *src_len, dstLen = *dst_len;
|
||||
|
Loading…
Reference in New Issue
Block a user