beginnings of trying to figure out how to get ScreenSelectProfile to move on properly

This commit is contained in:
AJ Kelly
2012-01-08 22:20:13 -06:00
parent 401abcc2f1
commit 03465803e9
2 changed files with 15 additions and 0 deletions
+14
View File
@@ -210,6 +210,20 @@ bool ScreenSelectProfile::Finish(){
return true;
}
void ScreenSelectProfile::HandleScreenMessage( const ScreenMessage SM )
{
if( SM == SM_MenuTimer )
{
bool bFinished = Finish();
if( !bFinished )
{
// TODO: we need to decide how to handle unfinished business.
}
}
ScreenWithMenuElements::HandleScreenMessage( SM );
}
// lua start
#include "LuaBinding.h"