DREALMSPAL and TITLEPAL were accidentally swapped with revision 1772.

git-svn-id: https://svn.eduke32.com/eduke32@1798 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2011-02-20 06:07:57 +00:00
parent 348474dd14
commit 177e506e01
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ char g_modDir[BMAX_PATH] = "/";
uint8_t water_pal[768],slime_pal[768],title_pal[768],dre_alms[768],ending_pal[768],*anim_pal;
uint8_t *basepaltable[BASEPALCOUNT] = { palette, water_pal, slime_pal, title_pal, dre_alms, ending_pal, NULL };
uint8_t *basepaltable[BASEPALCOUNT] = { palette, water_pal, slime_pal, dre_alms, title_pal, ending_pal, NULL };
static int32_t g_skipDefaultCons = 0;

View file

@ -238,8 +238,8 @@ typedef enum basepal_ {
BASEPAL = 0,
WATERPAL,
SLIMEPAL,
TITLEPAL,
DREALMSPAL,
TITLEPAL,
ENDINGPAL,
ANIMPAL
} basepal_t;