From dc116721fb79ff5f540246ff2de6a2e3c9999533 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 23 Sep 2021 11:41:48 +0200 Subject: [PATCH] - missed the index. --- src/d_iwad.cpp | 2 +- src/d_main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/d_iwad.cpp b/src/d_iwad.cpp index 6a2f690d1..567c7df45 100644 --- a/src/d_iwad.cpp +++ b/src/d_iwad.cpp @@ -264,7 +264,7 @@ void FIWadManager::ParseIWadInfo(const char *fn, const char *data, int datasize, // Look for IWAD definition lump // //========================================================================== -extern const char* iwad_folders[13]; +extern const char* iwad_folders[14]; extern const char* iwad_reserved[12]; FIWadManager::FIWadManager(const char *firstfn, const char *optfn) diff --git a/src/d_main.cpp b/src/d_main.cpp index a00a3f06c..817165962 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -198,7 +198,7 @@ extern bool insave; extern TDeletingArray LightDefaults; extern FName MessageBoxClass; -const char* iwad_folders[13] = { "flats/", "textures/", "hires/", "sprites/", "voxels/", "colormaps/", "acs/", "maps/", "voices/", "patches/", "graphics/", "sounds/", "music/", "materials/"}; +const char* iwad_folders[14] = { "flats/", "textures/", "hires/", "sprites/", "voxels/", "colormaps/", "acs/", "maps/", "voices/", "patches/", "graphics/", "sounds/", "music/", "materials/"}; const char* iwad_reserved[12] = { "mapinfo", "zmapinfo", "gameinfo", "sndinfo", "sbarinfo", "menudef", "gldefs", "animdefs", "decorate", "zscript", "iwadinfo", "maps/" };