From 93797f5d316ee45cd1b6d5cdabab6de199ad181d Mon Sep 17 00:00:00 2001 From: Robin Jones Date: Wed, 1 May 2024 18:37:45 +0100 Subject: [PATCH] Update ed64.c Add all current features to switch. --- src/flashcart/ed64/ed64.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/flashcart/ed64/ed64.c b/src/flashcart/ed64/ed64.c index 3b4a6f4c..046c14c4 100644 --- a/src/flashcart/ed64/ed64.c +++ b/src/flashcart/ed64/ed64.c @@ -95,6 +95,9 @@ static flashcart_err_t ed64_deinit (void) { static bool ed64_has_feature (flashcart_features_t feature) { switch (feature) { case FLASHCART_FEATURE_64DD: + // FIXME: this is not valid for the V3, as does contain them: + case FLASHCART_FEATURE_RTC: + case FLASHCART_FEATURE_USB: return false; default: return false;