remove old param

This commit is contained in:
Glenn Maynard
2006-12-19 09:05:27 +00:00
parent fd42989229
commit b29f884b95
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1193,7 +1193,7 @@ RString StepMania::SaveScreenshot( RString sDir, bool bSaveCompressed, bool bMak
return sFileName;
}
void StepMania::InsertCoin( int iNum, const RageTimer *pTime )
void StepMania::InsertCoin( int iNum )
{
for( int i = 0; i < iNum; ++i )
LIGHTSMAN->PulseCoinCounter();
@@ -1241,7 +1241,7 @@ bool HandleGlobalInputs( const InputEventPlus &input )
LOG->Trace( "Ignored coin insertion (editing)" );
break;
}
StepMania::InsertCoin( 1, &input.DeviceI.ts );
StepMania::InsertCoin();
return false; // Attract need to know because they go to TitleMenu on > 1 credit
}
+1 -1
View File
@@ -17,7 +17,7 @@ namespace StepMania
// If successful, return filename of screenshot in sDir, else return ""
RString SaveScreenshot( RString sDir, bool bSaveCompressed, bool bMakeSignature, int iIndex = -1 );
void InsertCoin( int iNum = 1, const RageTimer *pTime = NULL );
void InsertCoin( int iNum = 1 );
void InsertCredit();
void GetPreferredVideoModeParams( VideoModeParams &paramsOut );