mirror of
https://github.com/libretro/RetroArch
synced 2025-03-01 16:13:40 +00:00
Simplify two strings - do away with 'of' separator
This commit is contained in:
parent
b923182e0b
commit
7479c238f4
@ -911,7 +911,7 @@ static void command_event_disk_control_set_index(unsigned idx)
|
||||
if (control->set_image_index(idx))
|
||||
{
|
||||
if (idx < num_disks)
|
||||
snprintf(msg, sizeof(msg), "Setting disk %u of %u in tray.",
|
||||
snprintf(msg, sizeof(msg), "Setting disk %u/%u in tray.",
|
||||
idx + 1, num_disks);
|
||||
else
|
||||
strlcpy(msg,
|
||||
@ -921,7 +921,7 @@ static void command_event_disk_control_set_index(unsigned idx)
|
||||
else
|
||||
{
|
||||
if (idx < num_disks)
|
||||
snprintf(msg, sizeof(msg), "Failed to set disk %u of %u.",
|
||||
snprintf(msg, sizeof(msg), "Failed to set disk %u/%u.",
|
||||
idx + 1, num_disks);
|
||||
else
|
||||
strlcpy(msg,
|
||||
|
Loading…
x
Reference in New Issue
Block a user