From bccca24dfcdda5026767497ef00b5914c253ce0e Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 27 Apr 2001 19:08:47 +0000 Subject: [PATCH] --- source/map/map.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/map/map.cpp b/source/map/map.cpp index e4e20544c..9d9c72ffa 100644 --- a/source/map/map.cpp +++ b/source/map/map.cpp @@ -229,6 +229,7 @@ void CMapScene::think(int _frames) if(!CFader::isFading()&&!m_readyToExit) { // Change chapter +#ifndef __USER_CDBUILD__ if(PadGetDown(0)&PAD_UP) { if(++m_currentChapterSelection>4)m_currentChapterSelection=0; @@ -239,6 +240,7 @@ void CMapScene::think(int _frames) if(--m_currentChapterSelection<0)m_currentChapterSelection=4; generateMapScreenImage(); } +#endif // Move cursor if(PadGetDown(0)&PAD_LEFT) @@ -406,7 +408,11 @@ DVECTOR CMapScene::getPointerTargetPosition() ---------------------------------------------------------------------- */ int CMapScene::isLevelOpen(int _chapter,int _level) { +#ifdef __USER_CDBUILD__ + return _level<4; // no boss or kelp world for thq +#else return _level!=4; // no boss levels atm.. +#endif } int CMapScene::getSpatulaCollectedCount(int _chapter,int _level)