* Dink now continues to download and install dmods when in the background, but everywhere else pauses automatically

* After installing a dmod, you can now choose to play it now or go back to the browse dmod list
* DMOD data downloaded from dink network is now cached for that session (it's not going to change so quickly, so why stress DN.com if we don't have to)
* (Bugfix) "installing <dmod>..." text message is no longer truncated in a weird way sometimes
* (Bugfix) Fixed another issue where a base graphic could fill in with a missing .bmp in a sequence when it shouldn't


git-svn-id: svn://rtsoft.com/rtsvn/projects/RTDink@1505 353e56fe-9613-0410-8469-b96ad8e6f29c
This commit is contained in:
seth 2017-09-23 11:52:16 +00:00
parent 3998875161
commit 59d4b5754c
9 changed files with 166 additions and 49 deletions

View file

@ -473,8 +473,18 @@ void BrowseOnPostIntroTransition(VariantList *pVList)
Entity *pBG = pVList->Get(0).GetEntity();
DownloadDMODList(pBG);
//fresh download or use cached data?
if (g_dmodData.empty())
{
DownloadDMODList(pBG);
}
else
{
//use what we got
BrowseMenuAddScrollContent(pBG, NULL);
}
//CreateQuickTipFirstTimeOnly(pBG, "interface/iphone/quicktip_dmod.rttex", false);
}