From bba54c16556338612eda6cc969a5cc5bcb88e9ce Mon Sep 17 00:00:00 2001 From: GabyPCgeeK Date: Sat, 29 Apr 2017 16:37:14 -0400 Subject: [PATCH] show in which storage save is located (NAND/USB) --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 44723ae..3c3621f 100644 --- a/src/main.c +++ b/src/main.c @@ -250,7 +250,7 @@ int Menu_Main(void) { entrycount = count; for (int i = 0; i < 14; i++) { if (i+scroll<0 || i+scroll>=count) break; - if (strlen(titles[i+scroll].shortName)) console_print_pos(0, i+2, " %s", titles[i+scroll].shortName); + if (strlen(titles[i+scroll].shortName)) console_print_pos(0, i+2, " %s (%s)", titles[i+scroll].shortName, titles[i+scroll].isTitleOnUSB ? "USB" : "NAND"); else console_print_pos(0, i+2, " %08lx%08lx", titles[i+scroll].highID, titles[i+scroll].lowID); } console_print_pos(0, 2 + cursor, "->"); } break;