diff --git a/src/ScreenInstallOverlay.cpp b/src/ScreenInstallOverlay.cpp index adbe4cbf0f..41ff7e48f0 100644 --- a/src/ScreenInstallOverlay.cpp +++ b/src/ScreenInstallOverlay.cpp @@ -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); diff --git a/src/ScreenInstallOverlay.h b/src/ScreenInstallOverlay.h index 313ddd30b6..d3efff3bad 100644 --- a/src/ScreenInstallOverlay.h +++ b/src/ScreenInstallOverlay.h @@ -1,11 +1,10 @@ -/* ScreenInstallOverlay - package installation processing and messaging. */ - #ifndef ScreenInstallOverlay_H #define ScreenInstallOverlay_H #include "Screen.h" #include "BitmapText.h" +/** @brief Package installation processing and messaging. */ class ScreenInstallOverlay : public Screen { public: