From 3bf3bddfa8e3541c4d7057e66d372b0989c1f6fb Mon Sep 17 00:00:00 2001 From: jmlee337 Date: Wed, 28 Feb 2024 11:25:43 +0900 Subject: [PATCH] Update references to filesystems no one should be using FAT/FAT16, so remove that mention. add mention that exFAT is recommended, due to some hotswap problems with FAT32 drives that are somewhat full already --- loader/source/menu.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/loader/source/menu.c b/loader/source/menu.c index 95ec7be0..18ec71c2 100644 --- a/loader/source/menu.c +++ b/loader/source/menu.c @@ -841,8 +841,9 @@ static void Menu_GameSelection_Redraw(MenuCtx *ctx) default: { PrintFormat(MENU_SIZE, ORANGE, MENU_POS_X, SettingY(11), "[!] WRITE DEVICE FORMAT"); PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(12), "Please format USB drive"); - PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(13), "as FAT, FAT32, or exFAT to"); - PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(14), "write Slippi replays."); + PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(13), "as FAT32 or exFAT (exFAT"); + PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(14), "recommended) to write"); + PrintFormat(MENU_SIZE, BLACK, MENU_POS_X, SettingY(15), "Slippi replays."); usbStatusY = 16; break; }