From bf0d673210f956d85365e33d10eda0da757cd6fc Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Thu, 23 Feb 2023 03:01:55 +0000 Subject: [PATCH] remove res. --- src/menu/menu.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/menu/menu.c b/src/menu/menu.c index 4b172293..6154a13c 100644 --- a/src/menu/menu.c +++ b/src/menu/menu.c @@ -154,10 +154,9 @@ void menu_run (menu_t *menu) { else { printf("N64 Flashcart Menu\n\n"); printf("File list:\n"); - FRESULT res; char buff[256]; strcpy(buff, "/"); - res = scan_files(buff); + scan_files(buff); // TODO: wait for a key input }