[ScreenRanking] Added "NextPage" command. "SwitchPage" command is now "SwitchedPage".

This commit is contained in:
AJ Kelly
2012-07-05 14:51:26 -05:00
parent 74065ff0fd
commit 330dd89cb6
2 changed files with 368 additions and 362 deletions
+5
View File
@@ -8,6 +8,11 @@ ________________________________________________________________________________
StepMania 5.0 ???? ?? | 20120??? StepMania 5.0 ???? ?? | 20120???
-------------------------------------------------------------------------------- --------------------------------------------------------------------------------
2012/07/05
----------
* [ScreenRanking] Added "NextPage" command. "SwitchPage" command is
now "SwitchedPage". [AJ]
2012/07/03 2012/07/03
---------- ----------
* [ScreenHowToPlay] Actually shows notes again. [AJ] * [ScreenHowToPlay] Actually shows notes again. [AJ]
+2 -1
View File
@@ -180,6 +180,7 @@ void ScreenRanking::HandleScreenMessage( const ScreenMessage SM )
++m_iNextPageToShow; ++m_iNextPageToShow;
this->SortByDrawOrder(); this->SortByDrawOrder();
this->PlayCommand( "NextPage" );
this->PostScreenMessage( SM_HidePage, fSecsToShow-PAGE_FADE_SECONDS ); this->PostScreenMessage( SM_HidePage, fSecsToShow-PAGE_FADE_SECONDS );
} }
else else
@@ -189,7 +190,7 @@ void ScreenRanking::HandleScreenMessage( const ScreenMessage SM )
} }
else if( SM == SM_HidePage ) else if( SM == SM_HidePage )
{ {
this->PlayCommand( "SwitchPage" ); this->PlayCommand( "SwitchedPage" );
this->PostScreenMessage( SM_ShowNextPage, PAGE_FADE_SECONDS ); this->PostScreenMessage( SM_ShowNextPage, PAGE_FADE_SECONDS );
} }