Update ed64.c

Add USB feature
This commit is contained in:
Robin Jones 2024-01-17 19:49:41 +00:00 committed by GitHub
parent 6054cbe1ad
commit 0635d44034
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ static bool ed64_has_feature (flashcart_features_t feature) {
switch (feature) {
case FLASHCART_FEATURE_64DD: return false;
case FLASHCART_FEATURE_RTC: return false; // FIXME: if it is a V3 we should return true!
//case FLASHCART_FEATURE_USB: return false; // FIXME: if it is a V3 we should return true (although virtual)!
case FLASHCART_FEATURE_USB: return false; // FIXME: if it is a V3 we should return true (although virtual)!
default: return false;
}
}