[ScreenInstallOverlay] Added bare DownloadFinished message.
This commit is contained in:
@@ -18,6 +18,7 @@ sm-ssc v1.2 | 201012xx
|
|||||||
* [ScreenHowToPlay] Replaced LOAD_ALL_COMMANDS_AND_SET_XY_AND_ON_COMMAND macro
|
* [ScreenHowToPlay] Replaced LOAD_ALL_COMMANDS_AND_SET_XY_AND_ON_COMMAND macro
|
||||||
calls with ActorUtil::LoadAllCommandsAndSetXY(). Fixes an odd bug I ran into
|
calls with ActorUtil::LoadAllCommandsAndSetXY(). Fixes an odd bug I ran into
|
||||||
during the porting of DDR 5th Mix. [freem]
|
during the porting of DDR 5th Mix. [freem]
|
||||||
|
* [ScreenInstallOverlay] Added bare DownloadFinished message. [freem]
|
||||||
|
|
||||||
20101228
|
20101228
|
||||||
--------
|
--------
|
||||||
|
|||||||
@@ -248,11 +248,14 @@ public:
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
bool bFinsihed = m_DownloadState == packages &&
|
bool bFinished = m_DownloadState == packages &&
|
||||||
m_vsQueuedPackageUrls.empty() &&
|
m_vsQueuedPackageUrls.empty() &&
|
||||||
m_pTransfer == NULL;
|
m_pTransfer == NULL;
|
||||||
if( bFinsihed )
|
if( bFinished )
|
||||||
{
|
{
|
||||||
|
Message msg( "DownloadFinished" );
|
||||||
|
MESSAGEMAN->Broadcast(msg);
|
||||||
|
|
||||||
playAfterLaunchInfo = m_playAfterLaunchInfo;
|
playAfterLaunchInfo = m_playAfterLaunchInfo;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user