mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
More warning cleanups
This commit is contained in:
parent
c4316b791c
commit
43632b95ff
@ -521,10 +521,10 @@ void libretro_get_current_core_pathname(char *name, size_t size)
|
||||
{
|
||||
char c = id[i];
|
||||
|
||||
if (isspace((int)c) || isblank(c))
|
||||
if (isspace((int)c) || isblank((int)c))
|
||||
name[i] = '_';
|
||||
else
|
||||
name[i] = tolower(c);
|
||||
name[i] = tolower((int)c);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -124,7 +124,7 @@ bool input_keyboard_line_event(
|
||||
state->size--;
|
||||
}
|
||||
}
|
||||
else if (isprint(c))
|
||||
else if (isprint((int)c))
|
||||
{
|
||||
/* Handle left/right here when suitable */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user