mirror of
https://github.com/raysan5/raylib.git
synced 2026-04-17 12:39:09 -04:00
update defines for new format etc (#5760)
This commit is contained in:
18
src/raudio.c
18
src/raudio.c
@ -11,22 +11,22 @@
|
||||
* - Play/Stop/Pause/Resume loaded audio
|
||||
*
|
||||
* CONFIGURATION:
|
||||
* #define SUPPORT_MODULE_RAUDIO
|
||||
* #define SUPPORT_MODULE_RAUDIO 1
|
||||
* 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 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
|
||||
* #define SUPPORT_FILEFORMAT_WAV 1
|
||||
* #define SUPPORT_FILEFORMAT_OGG 1
|
||||
* #define SUPPORT_FILEFORMAT_MP3 1
|
||||
* #define SUPPORT_FILEFORMAT_QOA 1
|
||||
* #define SUPPORT_FILEFORMAT_FLAC 0
|
||||
* #define SUPPORT_FILEFORMAT_XM 1
|
||||
* #define SUPPORT_FILEFORMAT_MOD 1
|
||||
* Selected desired fileformats to be supported for loading. Some of those formats are
|
||||
* supported by default, to remove support, comment unrequired #define in this module
|
||||
* supported by default, to remove support, #define as 0 in this module or your build system
|
||||
*
|
||||
* DEPENDENCIES:
|
||||
* miniaudio.h - Audio device management lib (https://github.com/mackron/miniaudio)
|
||||
|
||||
Reference in New Issue
Block a user