Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
2 changed files with 4 additions and 0 deletions
Showing only changes of commit f7ea38a63d - Show all commits

View File

@ -39,6 +39,8 @@ struct DefaultConfiguration {
```
### `CustomConfiguration` macros
```c++
// Turns on support of Sonys VAG files for the CDFileProcessor (off by default)
#define __SUPPORT_VAG__
// Turns on colored rectangles during boot (off by default)
#define __USE_DEBUG_COLOR__
// Turns on PS3 support (on by default)

View File

@ -31,6 +31,8 @@ namespace JabyEngine {
using Configuration = CustomConfiguration;
#else
using Configuration = DefaultConfiguration;
// TODO: v Turn off when this is supported
#define __SUPPORT_VAG__
#define __SUPPORT_PS3__
#endif // has jabyengine_custom_config
}