mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-03 05:56:42 +02:00

Android interprets char as unsigned char, so comparing with 0 triggers a tautological-unsigned-char-zero-compare warning. Casting c to an unsigned char and removing the comparison with 0 resolves the warning while needing one less comparison on all platforms.