Some more misc fixes

git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1495 353e56fe-9613-0410-8469-b96ad8e6f29c
This commit is contained in:
seth 2017-09-19 11:39:43 +00:00
parent a5da7058ed
commit ee5ed829b3
4 changed files with 28 additions and 9 deletions

View file

@ -56,7 +56,8 @@ void GameOnSelect(VariantList *pVList) //0=vec2 point of click, 1=entity sent fr
g_dglo.m_dirInput[DINK_INPUT_BUTTON5] = true;
g_dglo.m_dirInputFinished[DINK_INPUT_BUTTON5] = true;
return;
//if we ONLY want the game to handle this, we'd enable this return...
//return;
}
if (!pMenu->GetEntityByName("PauseMenu"))

View file

@ -464,12 +464,16 @@ void CheckForNewVersion(Entity *pMenu)
//pComp->GetFunction("Init")->sig_function(&v);
GetMessageManager()->CallComponentFunction(pComp,1000, "Init", &v); //call it in a bit
GetMessageManager()->CallComponentFunction(pComp,100, "Init", &v); //call it in a bit
Entity *pEnt = VersionShowScoreMessage(pMenu, "`6");
Entity *pEnt = VersionShowScoreMessage(pMenu, "`wChecking for updates..");
EntityComponent *pTyper = pEnt->AddComponent(new TyperComponent);
pTyper->GetVar("text")->Set("Checking rtsoft.com for updates...");
pTyper->GetVar("speedMS")->Set(uint32(30));
pTyper->GetVar("text")->Set("...................");
pTyper->GetVar("speedMS")->Set(uint32(200));
}