remove logs (this stuff predates the crash handler and has been copied
and pasted around since) jesus we have a lot of screens
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
REGISTER_SCREEN_CLASS( ScreenBookkeeping );
|
||||
ScreenBookkeeping::ScreenBookkeeping( CString sClassName ) : ScreenWithMenuElements( sClassName )
|
||||
{
|
||||
LOG->Trace( "ScreenBookkeeping::ScreenBookkeeping()" );
|
||||
}
|
||||
|
||||
void ScreenBookkeeping::Init()
|
||||
|
||||
@@ -16,8 +16,6 @@ static ThemeMetric<bool> ALLOW_RESIZE("ScreenCenterImage","AllowResize");
|
||||
REGISTER_SCREEN_CLASS( ScreenCenterImage );
|
||||
ScreenCenterImage::ScreenCenterImage( CString sClassName ) : ScreenWithMenuElements( sClassName )
|
||||
{
|
||||
LOG->Trace( "ScreenCenterImage::ScreenCenterImage()" );
|
||||
|
||||
ZERO( m_fScale );
|
||||
}
|
||||
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
REGISTER_SCREEN_CLASS( ScreenDemonstration );
|
||||
ScreenDemonstration::ScreenDemonstration( CString sName ) : ScreenJukebox( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenDemonstration::ScreenDemonstration()" );
|
||||
m_bDemonstration = true;
|
||||
SOUNDMAN->SetPlayOnlyCriticalSounds( !GAMESTATE->IsTimeToPlayAttractSounds() ); // mute attract sounds
|
||||
}
|
||||
|
||||
@@ -615,8 +615,6 @@ static BackgroundLayer g_CurrentBGChangeLayer = BACKGROUND_LAYER_INVALID;
|
||||
REGISTER_SCREEN_CLASS( ScreenEdit );
|
||||
ScreenEdit::ScreenEdit( CString sName ) : ScreenWithMenuElements( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenEdit::ScreenEdit()" );
|
||||
|
||||
ASSERT( GAMESTATE->m_pCurSong );
|
||||
ASSERT( GAMESTATE->m_pCurSteps[0] );
|
||||
}
|
||||
|
||||
@@ -5,7 +5,6 @@
|
||||
REGISTER_SCREEN_CLASS( ScreenEditCourseMods );
|
||||
ScreenEditCourseMods::ScreenEditCourseMods( CString sName ) : ScreenEdit( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenEditCourseMods::ScreenEditCourseMods()" );
|
||||
}
|
||||
|
||||
void ScreenEditCourseMods::Init()
|
||||
|
||||
@@ -25,8 +25,6 @@ AutoScreenMessage( SM_BackFromEditDescription )
|
||||
REGISTER_SCREEN_CLASS( ScreenEditMenu );
|
||||
ScreenEditMenu::ScreenEditMenu( CString sName ) : ScreenWithMenuElements( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenEditMenu::ScreenEditMenu()" );
|
||||
|
||||
/* Enable all players. */
|
||||
FOREACH_PlayerNumber( pn )
|
||||
GAMESTATE->m_bSideIsJoined[pn] = true;
|
||||
|
||||
@@ -84,8 +84,6 @@ AutoScreenMessage( SM_AddBonus )
|
||||
REGISTER_SCREEN_CLASS( ScreenEvaluation );
|
||||
ScreenEvaluation::ScreenEvaluation( CString sClassName ) : ScreenWithMenuElements(sClassName)
|
||||
{
|
||||
LOG->Trace( "ScreenEvaluation::ScreenEvaluation" );
|
||||
|
||||
//
|
||||
// debugging
|
||||
//
|
||||
|
||||
@@ -8,8 +8,6 @@
|
||||
REGISTER_SCREEN_CLASS( ScreenGameplayLesson );
|
||||
ScreenGameplayLesson::ScreenGameplayLesson( CString sName ) : ScreenGameplayNormal( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenGameplayLesson::ScreenGameplayLesson()" );
|
||||
|
||||
m_iCurrentPageIndex = 0;
|
||||
m_Try = Try_1;
|
||||
}
|
||||
|
||||
@@ -169,7 +169,6 @@ void ScreenJukebox::SetSong()
|
||||
|
||||
ScreenJukebox::ScreenJukebox( CString sName ) : ScreenGameplayNormal( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenJukebox::ScreenJukebox()" );
|
||||
m_bDemonstration = false;
|
||||
|
||||
m_pCourseEntry = NULL;
|
||||
|
||||
@@ -26,7 +26,6 @@ static const int NUM_CHANGABLE_SLOTS = NUM_SHOWN_GAME_TO_DEVICE_SLOTS-1;
|
||||
REGISTER_SCREEN_CLASS( ScreenMapControllers );
|
||||
ScreenMapControllers::ScreenMapControllers( CString sClassName ) : ScreenWithMenuElements( sClassName )
|
||||
{
|
||||
LOG->Trace( "ScreenMapControllers::ScreenMapControllers()" );
|
||||
}
|
||||
|
||||
void ScreenMapControllers::Init()
|
||||
|
||||
@@ -47,7 +47,6 @@ Preference<CString> g_sLastServer( "LastConnectedServer", "" );
|
||||
REGISTER_SCREEN_CLASS( ScreenNetworkOptions );
|
||||
ScreenNetworkOptions::ScreenNetworkOptions( CString sClassName ) : ScreenOptions( sClassName )
|
||||
{
|
||||
LOG->Trace( "ScreenNetworkOptions::ScreenNetworkOptions()" );
|
||||
}
|
||||
|
||||
void ScreenNetworkOptions::Init()
|
||||
|
||||
@@ -43,7 +43,6 @@ static MenuDef g_TempMenu(
|
||||
REGISTER_SCREEN_CLASS( ScreenOptionsEditCourse );
|
||||
ScreenOptionsEditCourse::ScreenOptionsEditCourse( CString sName ) : ScreenOptionsEditCourseSubMenu( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenOptionsEditCourse::ScreenOptionsEditCourse()" );
|
||||
}
|
||||
|
||||
void ScreenOptionsEditCourse::Init()
|
||||
|
||||
@@ -48,7 +48,6 @@ static void FillSongsAndChoices( const CString &sSongGroup, vector<Song*> &vpSon
|
||||
REGISTER_SCREEN_CLASS( ScreenOptionsEditCourseEntry );
|
||||
ScreenOptionsEditCourseEntry::ScreenOptionsEditCourseEntry( CString sName ) : ScreenOptionsEditCourseSubMenu( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenOptionsEditCourseEntry::ScreenOptionsEditCourseEntry()" );
|
||||
}
|
||||
|
||||
void ScreenOptionsEditCourseEntry::Init()
|
||||
|
||||
@@ -135,7 +135,6 @@ static bool ValidateEditCourseName( const CString &sAnswer, CString &sErrorOut )
|
||||
REGISTER_SCREEN_CLASS( ScreenOptionsManageCourses );
|
||||
ScreenOptionsManageCourses::ScreenOptionsManageCourses( CString sName ) : ScreenOptionsEditCourseSubMenu( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenOptionsManageCourses::ScreenOptionsManageCourses()" );
|
||||
}
|
||||
|
||||
void ScreenOptionsManageCourses::Init()
|
||||
|
||||
@@ -67,7 +67,6 @@ static bool ValidateEditStepsDescription( const CString &sAnswer, CString &sErro
|
||||
REGISTER_SCREEN_CLASS( ScreenOptionsManageEditSteps );
|
||||
ScreenOptionsManageEditSteps::ScreenOptionsManageEditSteps( CString sName ) : ScreenOptions( sName )
|
||||
{
|
||||
LOG->Trace( "ScreenOptionsManageEditSteps::ScreenOptionsManageEditSteps()" );
|
||||
}
|
||||
|
||||
void ScreenOptionsManageEditSteps::Init()
|
||||
|
||||
@@ -25,7 +25,6 @@ ScreenSelect::ScreenSelect( CString sClassName ) :
|
||||
IDLE_TIMEOUT_SECONDS(m_sName,"IdleTimeoutSeconds"),
|
||||
ALLOW_DISABLED_PLAYER_INPUT(m_sName,"AllowDisabledPlayerInput")
|
||||
{
|
||||
LOG->Trace( "ScreenSelect::ScreenSelect()" );
|
||||
}
|
||||
|
||||
void ScreenSelect::Init()
|
||||
|
||||
Reference in New Issue
Block a user