mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2026-02-16 06:49:29 +01:00
Fix Windows builds pt 4 (Issue #18)
This commit is contained in:
@@ -1468,7 +1468,7 @@ _pdfio_win32_open(const char *filename, // I - UTF-8 filename
|
||||
{
|
||||
// Two-word sequence...
|
||||
*utf16ptr++ = 0xd800 | ((unich >> 10) & 0x03ff);
|
||||
*utf16ptr++ = 0xdc00 | (unich 0x03ff);
|
||||
*utf16ptr++ = 0xdc00 | (unich & 0x03ff);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user