Update ed64.c

Add all current features to switch.
This commit is contained in:
Robin Jones 2024-05-01 18:37:45 +01:00 committed by GitHub
parent f646b50f76
commit 93797f5d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -95,6 +95,9 @@ static flashcart_err_t ed64_deinit (void) {
static bool ed64_has_feature (flashcart_features_t feature) { static bool ed64_has_feature (flashcart_features_t feature) {
switch (feature) { switch (feature) {
case FLASHCART_FEATURE_64DD: 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; return false;
default: default:
return false; return false;