diff options
| author | Ray <[email protected]> | 2023-05-01 14:04:22 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-05-01 14:04:22 +0200 |
| commit | 7d68aa686974347cefe0ef481c835e3d60bdc4b9 (patch) | |
| tree | 2542aba007b5d41956932ce47c1cb56e5a34ce42 /src/raudio.c | |
| parent | a4a5a798bdb546646b607b3348a8f2d43b161a09 (diff) | |
| download | raylib-7d68aa686974347cefe0ef481c835e3d60bdc4b9.tar.gz raylib-7d68aa686974347cefe0ef481c835e3d60bdc4b9.zip | |
REVIEWED: Modules description layout
Diffstat (limited to 'src/raudio.c')
| -rw-r--r-- | src/raudio.c | 31 |
1 files changed, 15 insertions, 16 deletions
diff --git a/src/raudio.c b/src/raudio.c index 8dfead37..5e2ccf99 100644 --- a/src/raudio.c +++ b/src/raudio.c @@ -11,23 +11,22 @@ * - Play/Stop/Pause/Resume loaded audio * * CONFIGURATION: +* #define SUPPORT_MODULE_RAUDIO +* raudio module is included in the build * -* #define SUPPORT_MODULE_RAUDIO -* raudio module is included in the build +* #define RAUDIO_STANDALONE +* Define to use the module as standalone library (independently of raylib). +* Required types and functions are defined in the same module. * -* #define RAUDIO_STANDALONE -* Define to use the module as standalone library (independently of raylib). -* Required types and functions are defined in the same module. -* -* #define SUPPORT_FILEFORMAT_WAV -* #define SUPPORT_FILEFORMAT_OGG -* #define SUPPORT_FILEFORMAT_MP3 -* #define SUPPORT_FILEFORMAT_QOA -* #define SUPPORT_FILEFORMAT_FLAC -* #define SUPPORT_FILEFORMAT_XM -* #define SUPPORT_FILEFORMAT_MOD -* Selected desired fileformats to be supported for loading. Some of those formats are -* supported by default, to remove support, just comment unrequired #define in this module +* #define SUPPORT_FILEFORMAT_WAV +* #define SUPPORT_FILEFORMAT_OGG +* #define SUPPORT_FILEFORMAT_MP3 +* #define SUPPORT_FILEFORMAT_QOA +* #define SUPPORT_FILEFORMAT_FLAC +* #define SUPPORT_FILEFORMAT_XM +* #define SUPPORT_FILEFORMAT_MOD +* Selected desired fileformats to be supported for loading. Some of those formats are +* supported by default, to remove support, just comment unrequired #define in this module * * DEPENDENCIES: * miniaudio.h - Audio device management lib (https://github.com/mackron/miniaudio) @@ -42,7 +41,7 @@ * David Reid (github: @mackron) (Nov. 2017): * - Complete port to miniaudio library * -* Joshua Reisenauer (github: @kd7tck) (2015) +* Joshua Reisenauer (github: @kd7tck) (2015): * - XM audio module support (jar_xm) * - MOD audio module support (jar_mod) * - Mixing channels support |
