From 177e506e01c2347a0ef2fff2edb21c9cb0cf2f84 Mon Sep 17 00:00:00 2001 From: plagman Date: Sun, 20 Feb 2011 06:07:57 +0000 Subject: [PATCH] DREALMSPAL and TITLEPAL were accidentally swapped with revision 1772. git-svn-id: https://svn.eduke32.com/eduke32@1798 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/game.c | 2 +- polymer/eduke32/source/game.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/source/game.c b/polymer/eduke32/source/game.c index 7568e51c5..b5e203985 100644 --- a/polymer/eduke32/source/game.c +++ b/polymer/eduke32/source/game.c @@ -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; diff --git a/polymer/eduke32/source/game.h b/polymer/eduke32/source/game.h index 85c3d7247..509d922bd 100644 --- a/polymer/eduke32/source/game.h +++ b/polymer/eduke32/source/game.h @@ -238,8 +238,8 @@ typedef enum basepal_ { BASEPAL = 0, WATERPAL, SLIMEPAL, - TITLEPAL, DREALMSPAL, + TITLEPAL, ENDINGPAL, ANIMPAL } basepal_t;