-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove redundant defines and add build check for MW module
- Loading branch information
1 parent
4b78212
commit 9ec209c
Showing
4 changed files
with
5 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ | |
"DEBUG", | ||
"DEBUG_EVENTS", | ||
"DEBUG_TICKS", | ||
"MODULE_MEGAWIFI=1", | ||
"BUILD=\"dev\"" | ||
], | ||
"cStandard": "c11", | ||
|
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,3 +1,7 @@ | ||
#if (ENABLE_BANK_SWITCH == 0) | ||
#error Bank switching support disabled. Build SGDK with ENABLE_BANK_SWITCH = 1 | ||
#endif | ||
|
||
#if (MODULE_MEGAWIFI == 0) | ||
#error MegaWiFi module disabled. Build SGDK with MODULE_MEGAWIFI = 1 | ||
#endif |
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