Bump max number of OGG/Vorbis files to 128.

Requested in #714, closes #714.
This commit is contained in:
Yamagi 2021-05-12 18:11:26 +02:00
parent 002498c33d
commit 968cd4248d
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ static ogg_status_t ogg_status; /* Status indicator. */
static stb_vorbis *ogg_file; /* Ogg Vorbis file. */
static qboolean ogg_started; /* Initialization flag. */
enum { MAX_NUM_OGGTRACKS = 32 };
enum { MAX_NUM_OGGTRACKS = 128 };
static char* ogg_tracks[MAX_NUM_OGGTRACKS];
static int ogg_maxfileindex;