mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-10-17 07:16:00 +00:00
Simplify flags testing (#7220)
This commit is contained in:
@@ -387,7 +387,7 @@ SDL_iconv(SDL_iconv_t cd,
|
||||
left = 1;
|
||||
}
|
||||
} else {
|
||||
if ((p[0] & 0x80) != 0x00) {
|
||||
if (p[0] & 0x80) {
|
||||
/* Skip illegal sequences
|
||||
return SDL_ICONV_EILSEQ;
|
||||
*/
|
||||
|
Reference in New Issue
Block a user