Added overlay input for ScreenInstallOverlay... commented out the stepmania.com launch for now.

This commit is contained in:
AJ Kelly
2011-03-05 12:38:04 -06:00
parent 55a34e89d7
commit 5072481151
2 changed files with 12 additions and 2 deletions
+11
View File
@@ -313,6 +313,17 @@ void ScreenInstallOverlay::Init()
this->AddChild( &m_textStatus );
}
bool ScreenInstallOverlay::OverlayInput( const InputEventPlus &input )
{
if( input.DeviceI.button == g_buttonLogin && input.type == IET_FIRST_PRESS )
{
//HOOKS->GoToURL("http://www.stepmania.com/launch.php");
return true;
}
return false;
}
void ScreenInstallOverlay::Update( float fDeltaTime )
{
Screen::Update(fDeltaTime);