This commit is contained in:
Daveo 2001-08-22 15:09:54 +00:00
parent 1a64098e58
commit f169e1e725

View file

@ -156,7 +156,7 @@ void CBossText::select(int _dontChangeMusic)
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
void CBossText::think(int _frames) void CBossText::think(int _frames)
{ {
if(!CFader::isFading()) if(!CFader::isFading() && !m_readyToExit)
{ {
int pad; int pad;
pad=PadGetDown(0); pad=PadGetDown(0);
@ -185,7 +185,7 @@ void CBossText::think(int _frames)
Params: Params:
Returns: Returns:
---------------------------------------------------------------------- */ ---------------------------------------------------------------------- */
DVECTOR pos={256,170}; const DVECTOR pos={256,170};
void CBossText::render() void CBossText::render()
{ {
SpriteBank *sb; SpriteBank *sb;
@ -195,6 +195,7 @@ void CBossText::render()
POLY_FT4 *ft4; POLY_FT4 *ft4;
const BOSS_DATA *bd; const BOSS_DATA *bd;
if(CFader::isFading() && m_readyToExit) return;
// Scroll effect type thingy stuff // Scroll effect type thingy stuff
sb=GameScene.getSpriteBank(); sb=GameScene.getSpriteBank();
fhCorner=sb->getFrameHeader(FRM__HELPBOX1); fhCorner=sb->getFrameHeader(FRM__HELPBOX1);