diff --git a/config/Readme.md b/config/Readme.md index fd91bf39..cf73d137 100644 --- a/config/Readme.md +++ b/config/Readme.md @@ -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) diff --git a/include/PSX/jabyengine_config.hpp b/include/PSX/jabyengine_config.hpp index 3a92f80d..868a6052 100644 --- a/include/PSX/jabyengine_config.hpp +++ b/include/PSX/jabyengine_config.hpp @@ -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 } \ No newline at end of file