Add VAG configuration option
This commit is contained in:
parent
fed0d8833c
commit
f7ea38a63d
|
@ -39,6 +39,8 @@ struct DefaultConfiguration {
|
||||||
```
|
```
|
||||||
### `CustomConfiguration` macros
|
### `CustomConfiguration` macros
|
||||||
```c++
|
```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)
|
// Turns on colored rectangles during boot (off by default)
|
||||||
#define __USE_DEBUG_COLOR__
|
#define __USE_DEBUG_COLOR__
|
||||||
// Turns on PS3 support (on by default)
|
// Turns on PS3 support (on by default)
|
||||||
|
|
|
@ -31,6 +31,8 @@ namespace JabyEngine {
|
||||||
using Configuration = CustomConfiguration;
|
using Configuration = CustomConfiguration;
|
||||||
#else
|
#else
|
||||||
using Configuration = DefaultConfiguration;
|
using Configuration = DefaultConfiguration;
|
||||||
|
// TODO: v Turn off when this is supported
|
||||||
|
#define __SUPPORT_VAG__
|
||||||
#define __SUPPORT_PS3__
|
#define __SUPPORT_PS3__
|
||||||
#endif // has jabyengine_custom_config
|
#endif // has jabyengine_custom_config
|
||||||
}
|
}
|
Loading…
Reference in New Issue