diff --git a/src/physfs_unicode.c b/src/physfs_unicode.c index b520eaf..52c997c 100644 --- a/src/physfs_unicode.c +++ b/src/physfs_unicode.c @@ -210,7 +210,7 @@ static PHYSFS_uint32 utf16codepoint(const PHYSFS_uint16 **_str) else { src++; /* eat the other surrogate. */ - cp = (0x10000 | ((cp - 0xD800) << 10) | (pair - 0xDC00)); + cp = 0x10000 + (((cp - 0xD800) << 10) | (pair - 0xDC00)); } /* else */ } /* else if */