-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config option to enable/disable preserving SYSCONF
Off by default. Located under Other settings.
- Loading branch information
1 parent
227d54e
commit 09fe101
Showing
5 changed files
with
33 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,37 @@ | ||
#pragma once | ||
|
||
// Wii VC | ||
#define DEFAULT_AUTOLAUNCH_DRC_SUPPORTED_VALUE DISPLAY_OPTION_CHOOSE | ||
#define DEFAULT_AUTOLAUNCH_DRC_SUPPORTED_VALUE DISPLAY_OPTION_CHOOSE | ||
#define DEFAULT_AUTOLAUNCH_NO_DRC_SUPPORT_VALUE DISPLAY_OPTION_CHOOSE | ||
#define DEFAULT_DISPLAY_OPTIONS_ORDER_VALUE DISPLAY_OPTIONS_ORDER_RECENT | ||
#define DEFAULT_SET_RESOLUTION_VALUE SET_RESOLUTION_NONE | ||
#define DEFAULT_USE_CUSTOM_DIALOGS_VALUE true | ||
#define DEFAULT_DISPLAY_OPTIONS_ORDER_VALUE DISPLAY_OPTIONS_ORDER_RECENT | ||
#define DEFAULT_SET_RESOLUTION_VALUE SET_RESOLUTION_NONE | ||
#define DEFAULT_USE_CUSTOM_DIALOGS_VALUE true | ||
|
||
// Wii Mode | ||
#define DEFAULT_WII_MENU_SET_RESOLUTION_VALUE SET_RESOLUTION_NONE | ||
#define DEFAULT_WII_MENU_SET_RESOLUTION_VALUE SET_RESOLUTION_NONE | ||
|
||
// WUHB Forwarder | ||
#define DEFAULT_FORWARDER_DISPLAY_OVERRIDE DISPLAY_OPTION_CHOOSE | ||
#define DEFAULT_FORWARDER_DISPLAY_OVERRIDE DISPLAY_OPTION_CHOOSE | ||
|
||
// Other | ||
#define DEFAULT_NOTIFICATION_THEME_VALUE NOTIFICATION_THEME_LIGHT | ||
#define DEFAULT_NOTIFICATION_THEME_VALUE NOTIFICATION_THEME_LIGHT | ||
#define DEFAULT_PRESERVE_SYSCONF_VALUE false | ||
|
||
// Wii VC | ||
#define AUTOLAUNCH_DRC_SUPPORTED_CONFIG_ID "gAutolaunchDRCSupported" | ||
#define AUTOLAUNCH_NO_DRC_SUPPORT_CONFIG_ID "gAutolaunchNoDRCSupport" | ||
#define DISPLAY_OPTIONS_ORDER_CONFIG_ID "gDisplayOptionsOrder" | ||
#define SET_RESOLUTION_CONFIG_ID "gSetResolution" | ||
#define USE_CUSTOM_DIALOGS_CONFIG_ID "gUseCustomDialogs" | ||
#define AUTOLAUNCH_DRC_SUPPORTED_CONFIG_ID "gAutolaunchDRCSupported" | ||
#define AUTOLAUNCH_NO_DRC_SUPPORT_CONFIG_ID "gAutolaunchNoDRCSupport" | ||
#define DISPLAY_OPTIONS_ORDER_CONFIG_ID "gDisplayOptionsOrder" | ||
#define SET_RESOLUTION_CONFIG_ID "gSetResolution" | ||
#define USE_CUSTOM_DIALOGS_CONFIG_ID "gUseCustomDialogs" | ||
|
||
// Wii Mode | ||
#define WII_MENU_SET_RESOLUTION_CONFIG_ID "wiiMenuSetResolution" | ||
#define WII_MENU_SET_RESOLUTION_CONFIG_ID "wiiMenuSetResolution" | ||
|
||
// WUHB Forwarder | ||
#define FORWARDER_DISPLAY_OVERRIDE_CONFIG_ID "forwarderDisplayOverride" | ||
#define FORWARDER_DISPLAY_OVERRIDE_CONFIG_ID "forwarderDisplayOverride" | ||
|
||
// Other | ||
#define NOTIFICATION_THEME_CONFIG_ID "notificationTheme" | ||
#define NOTIFICATION_THEME_CONFIG_ID "notificationTheme" | ||
#define PRESERVE_SYSCONF_CONFIG_ID "preserveSysconf" | ||
|
||
void initConfig(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters