mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-27 02:40:31 +00:00
Use correct conversion specifier
This commit is contained in:
parent
97aa52cb74
commit
af262e12d1
@ -597,7 +597,7 @@ int MDFNI_DecodePAR(const char *str, uint32 *a, uint8 *v, uint8 *c, char *type)
|
||||
int boo[4];
|
||||
if(strlen(str)!=8) return(0);
|
||||
|
||||
sscanf(str,"%02x%02x%02x%02x",boo,boo+1,boo+2,boo+3);
|
||||
sscanf(str,"%02p%02p%02p%02p",boo,boo+1,boo+2,boo+3);
|
||||
|
||||
*c = 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user