From 386906d38f482c05c183588cfa4594275443c2ac Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Tue, 21 May 2024 23:06:07 +0100 Subject: [PATCH] Correct hidden paths (#105) ## Description For ED64 based carts ## Motivation and Context The ROMs are not based in the root path. ## How Has This Been Tested? ## Screenshots ## Types of changes - [x] Improvement (non-breaking change that adds a new feature) - [ ] Bug fix (fixes an issue) - [ ] Breaking change (breaking change) - [ ] Config and build (change in the configuration and build system, has no impact on code or features) ## Checklist: - [ ] My code follows the code style of this project. - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. Signed-off-by: GITHUB_USER --- src/menu/views/browser.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/menu/views/browser.c b/src/menu/views/browser.c index c8481f4a..bb514b1b 100644 --- a/src/menu/views/browser.c +++ b/src/menu/views/browser.c @@ -21,8 +21,8 @@ static const char *hidden_paths[] = { "/menu.bin", "/menu", "/N64FlashcartMenu.n64", - "/OS64.v64", - "/OS64P.v64", + "/ED64", + "/ED64P", "/sc64menu.n64", "/System Volume Information", NULL,