Rotate through tips based on execution count.
This commit is contained in:
parent
2096d704be
commit
43a2b6fdac
1 changed files with 1 additions and 5 deletions
|
@ -521,11 +521,7 @@ void SplashScreen::updateText()
|
||||||
_haveSetStartupTip = true;
|
_haveSetStartupTip = true;
|
||||||
FGLocale* locale = globals->get_locale();
|
FGLocale* locale = globals->get_locale();
|
||||||
const int tipCount = locale->getLocalizedStringCount("tip", "tips");
|
const int tipCount = locale->getLocalizedStringCount("tip", "tips");
|
||||||
|
int tipIndex = globals->get_props()->getIntValue("/sim/session",0) % tipCount;
|
||||||
time_t now;
|
|
||||||
::time(&now);
|
|
||||||
struct tm* currentTime = ::localtime(&now);
|
|
||||||
int tipIndex = currentTime->tm_yday % tipCount;
|
|
||||||
|
|
||||||
std::string tipText = locale->getLocalizedStringWithIndex("tip", "tips", tipIndex);
|
std::string tipText = locale->getLocalizedStringWithIndex("tip", "tips", tipIndex);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue