flyinghead / flycast

Flycast is a multiplatform Sega Dreamcast, Naomi, Naomi 2 and Atomiswave emulator
GNU General Public License v2.0
1.36k stars 167 forks source link

cheats: fix parsing cheat codes on some platforms (like Windows) #1382

Closed dakrk closed 7 months ago

dakrk commented 7 months ago

using strtol here instead of strtoul when cheat code values are expected to be unsigned and are above 7fffffff breaks on platforms like Windows where long is 32-bit even on 64-bit platforms, capping out at 2147483647 and causing some (possibly quite a lot) of cheat codes to break.