mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-24 00:20:01 +00:00
Kill some warnings
This commit is contained in:
parent
43c25383e3
commit
77d0745f38
@ -197,7 +197,7 @@ static bool command_read_ram(const char *arg)
|
|||||||
cheevos_var_t var;
|
cheevos_var_t var;
|
||||||
const uint8_t * data;
|
const uint8_t * data;
|
||||||
unsigned nbytes;
|
unsigned nbytes;
|
||||||
int i;
|
unsigned i;
|
||||||
char reply[256];
|
char reply[256];
|
||||||
char *reply_at = NULL;
|
char *reply_at = NULL;
|
||||||
|
|
||||||
|
@ -851,12 +851,12 @@ static int menu_displaylist_parse_system_info(menu_displaylist_info_t *info)
|
|||||||
memory_total
|
memory_total
|
||||||
);
|
);
|
||||||
snprintf(tmp2, sizeof(tmp2),
|
snprintf(tmp2, sizeof(tmp2),
|
||||||
"Memory (in megabytes) : %1u/%1u MB",
|
"Memory (in megabytes) : %lu/%lu MB",
|
||||||
bytes_to_mb(memory_used),
|
bytes_to_mb(memory_used),
|
||||||
bytes_to_mb(memory_total)
|
bytes_to_mb(memory_total)
|
||||||
);
|
);
|
||||||
snprintf(tmp3, sizeof(tmp3),
|
snprintf(tmp3, sizeof(tmp3),
|
||||||
"Memory (in gigabytes) : %1u/%1u GB",
|
"Memory (in gigabytes) : %lu/%lu GB",
|
||||||
bytes_to_gb(memory_used),
|
bytes_to_gb(memory_used),
|
||||||
bytes_to_gb(memory_total)
|
bytes_to_gb(memory_total)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user