Skip to content

Commit

Permalink
Increase MAX_AUDIOINSTANCES to 128 for AudioEngine
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinLutherSu committed Jan 25, 2025
1 parent c98a8b7 commit 46dae36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions core/audio/alconfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@
#if defined(__EMSCRIPTEN__)
#import <AL/al.h>
#import <AL/alc.h>
#define MAX_AUDIOINSTANCES 24
#define MAX_AUDIOINSTANCES 128
#else
#if !AX_USE_ALSOFT
# import <OpenAL/al.h>
# import <OpenAL/alc.h>
# define MAX_AUDIOINSTANCES 24
# define MAX_AUDIOINSTANCES 128
#else
# define AL_ALEXT_PROTOTYPES 1
# include "AL/al.h"
# include "AL/alc.h"
# include "AL/alext.h"
# define MAX_AUDIOINSTANCES 32
# define MAX_AUDIOINSTANCES 128
#endif
#endif

0 comments on commit 46dae36

Please sign in to comment.