From e9617e3b8e49fede933565cff5755830f66aa58b Mon Sep 17 00:00:00 2001 From: Paul Date: Fri, 12 Jan 2001 17:31:33 +0000 Subject: [PATCH] --- source/paul/scenesel.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source/paul/scenesel.cpp b/source/paul/scenesel.cpp index 6a8544a1d..52c454aa1 100644 --- a/source/paul/scenesel.cpp +++ b/source/paul/scenesel.cpp @@ -62,6 +62,10 @@ Tyepdefs && Defines ------------------- */ +// Uncomment this to make the selector automatically choose the default ( first ) scene +// You can still use L1&L2 to force the selection menu to appear +//#define AUTOMATICALLY_CHOOSE_DEFAULT + /*---------------------------------------------------------------------- Structure defintions -------------------- */ @@ -168,6 +172,7 @@ void CSceneSelector::think(int _frames) { if(--m_countdown==0) { +#ifdef AUTOMATICALLY_CHOOSE_DEFAULT int pad; pad=PadGetHeld(0); if(pad&(PAD_L1|PAD_L2)) @@ -178,6 +183,9 @@ void CSceneSelector::think(int _frames) { m_state=STATE_SELECTED; } +#else + m_state=STATE_SELECTING; +#endif } break; }