You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gc.cpp
//Crappy way to test (all options works), uncomment to enable...
// new settings for devolution
//DEVO_CONFIG->options |= DEVO_CONFIG_FZERO_AX;
//DEVO_CONFIG->options |= DEVO_CONFIG_TIMER_FIX;
//DEVO_CONFIG->options |= DEVO_CONFIG_D_BUTTONS;
//DEVO_CONFIG->options |= DEVO_CONFIG_CROP_OVERSCAN;
//DEVO_CONFIG->options |= DEVO_CONFIG_DISC_DELAY;
//DEVO_CONFIG->options |= DEVO_CONFIG_PLAYLOG;
//DEVO_CONFIG->options |= DEVO_CONFIG_FORCE_480P;
//DEVO_CONFIG->options |= DEVO_CONFIG_FORCE_576P;
All is needed now is to make a more permanent & classy solution ex. make menu changes & declare bool correctly instead of commented out hardcode, like "wifi" "activityled" built in options.
The text was updated successfully, but these errors were encountered:
gc.hpp
|updated| #define DEVO_CONFIG_VERSION 0x0201
// option flags
#define DEVO_CONFIG_WIFILOG (1<<0)
#define DEVO_CONFIG_WIDE (1<<1)
#define DEVO_CONFIG_NOLED (1<<2)
|added| #define DEVO_CONFIG_FZERO_AX (1<<3)
|added| #define DEVO_CONFIG_TIMER_FIX (1<<4)
|added| #define DEVO_CONFIG_D_BUTTONS (1<<5)
|added| #define DEVO_CONFIG_CROP_OVERSCAN (1<<6)
|added| #define DEVO_CONFIG_DISC_DELAY (1<<7)
|added| #define DEVO_CONFIG_PLAYLOG (1<<8)
|added| #define DEVO_CONFIG_FORCE_480P (1<<9)
|added| #define DEVO_CONFIG_FORCE_576P (1<<10)
gc.cpp
//Crappy way to test (all options works), uncomment to enable...
// new settings for devolution
//DEVO_CONFIG->options |= DEVO_CONFIG_FZERO_AX;
//DEVO_CONFIG->options |= DEVO_CONFIG_TIMER_FIX;
//DEVO_CONFIG->options |= DEVO_CONFIG_D_BUTTONS;
//DEVO_CONFIG->options |= DEVO_CONFIG_CROP_OVERSCAN;
//DEVO_CONFIG->options |= DEVO_CONFIG_DISC_DELAY;
//DEVO_CONFIG->options |= DEVO_CONFIG_PLAYLOG;
//DEVO_CONFIG->options |= DEVO_CONFIG_FORCE_480P;
//DEVO_CONFIG->options |= DEVO_CONFIG_FORCE_576P;
All is needed now is to make a more permanent & classy solution ex. make menu changes & declare bool correctly instead of commented out hardcode, like "wifi" "activityled" built in options.
The text was updated successfully, but these errors were encountered: