mirror of
https://github.com/raysan5/raylib.git
synced 2026-05-26 06:30:27 -04:00
Compare commits
5 Commits
3bea7f518d
...
bf830c3f7b
| Author | SHA1 | Date | |
|---|---|---|---|
| bf830c3f7b | |||
| 23c8ee855d | |||
| 416da9aca6 | |||
| 936e8ae0db | |||
| ea92677902 |
15
src/config.h
15
src/config.h
@ -124,12 +124,6 @@
|
|||||||
#define SUPPORT_CLIPBOARD_IMAGE 1
|
#define SUPPORT_CLIPBOARD_IMAGE 1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SUPPORT_TRACELOG
|
|
||||||
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
|
|
||||||
#else
|
|
||||||
#define TRACELOG(level, ...) (void)0
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// rcore: Configuration values
|
// rcore: Configuration values
|
||||||
// NOTE: Below values are alread defined inside [rcore.c] so there is no need to be
|
// NOTE: Below values are alread defined inside [rcore.c] so there is no need to be
|
||||||
// redefined here, in case it must be done, just uncomment the required line and update
|
// redefined here, in case it must be done, just uncomment the required line and update
|
||||||
@ -365,7 +359,14 @@
|
|||||||
//#define AUDIO_DEVICE_PERIOD_SIZE_IN_FRAMES 0 // Device period size (controls latency, 0 defaults to 10ms)
|
//#define AUDIO_DEVICE_PERIOD_SIZE_IN_FRAMES 0 // Device period size (controls latency, 0 defaults to 10ms)
|
||||||
//#define MAX_AUDIO_BUFFER_POOL_CHANNELS 16 // Maximum number of audio pool channels
|
//#define MAX_AUDIO_BUFFER_POOL_CHANNELS 16 // Maximum number of audio pool channels
|
||||||
//------------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------------
|
||||||
|
|
||||||
#endif // !EXTERNAL_CONFIG_FLAGS
|
#endif // !EXTERNAL_CONFIG_FLAGS
|
||||||
|
|
||||||
|
// NOTE: Following macro depends on config flag that can
|
||||||
|
// be externally defined, so, it needs to be outside EXTERNAL_CONFIG_FLAGS
|
||||||
|
#if SUPPORT_TRACELOG
|
||||||
|
#define TRACELOG(level, ...) TraceLog(level, __VA_ARGS__)
|
||||||
|
#else
|
||||||
|
#define TRACELOG(level, ...) (void)0
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif // CONFIG_H
|
#endif // CONFIG_H
|
||||||
|
|||||||
Reference in New Issue
Block a user