mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2024-11-26 20:44:15 +01:00
Change ED64 base folder to be generic
Add feature improvements
This commit is contained in:
parent
c52176db7a
commit
1f273f79e2
2
Makefile
2
Makefile
@ -30,7 +30,7 @@ SRCS = \
|
||||
flashcart/64drive/64drive.c \
|
||||
flashcart/flashcart_utils.c \
|
||||
flashcart/flashcart.c \
|
||||
flashcart/ed64x/ed64x.c \
|
||||
flashcart/ed64/ed64x.c \
|
||||
flashcart/sc64/sc64_ll.c \
|
||||
flashcart/sc64/sc64.c \
|
||||
libs/libspng/spng/spng.c \
|
||||
|
@ -48,8 +48,9 @@ static bool ed64x_has_feature (flashcart_features_t feature) {
|
||||
switch (feature) {
|
||||
case FLASHCART_FEATURE_RTC: return is_model_x7 ? true : false;
|
||||
case FLASHCART_FEATURE_USB: return is_model_x7 ? true : false;
|
||||
case FLASHCART_FEATURE_AUTO_CIC: return true;
|
||||
case FLASHCART_FEATURE_64DD: return false;
|
||||
case FLASHCART_FEATURE_AUTO_CIC: return true;
|
||||
case FLASHCART_FEATURE_AUTO_REGION: return true;
|
||||
default: return false;
|
||||
}
|
||||
}
|
@ -11,7 +11,7 @@
|
||||
#include "flashcart_utils.h"
|
||||
|
||||
#include "64drive/64drive.h"
|
||||
#include "ed64x/ed64x.h"
|
||||
#include "ed64/ed64x.h"
|
||||
#include "sc64/sc64.h"
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user