Reverting AssetsManager::update.

This commit is contained in:
James Chen 2013-11-11 17:06:32 +08:00
parent 22584ca9c2
commit 394f4e703b
2 changed files with 2 additions and 2 deletions

View File

@ -214,7 +214,7 @@ void AssetsManager::downloadAndUncompress()
_isDownloading = false; _isDownloading = false;
} }
void AssetsManager::update(float delta) void AssetsManager::update()
{ {
if (_isDownloading) return; if (_isDownloading) return;

View File

@ -98,7 +98,7 @@ public:
/* @brief Download new package if there is a new version, and uncompress downloaded zip file. /* @brief Download new package if there is a new version, and uncompress downloaded zip file.
* Ofcourse it will set search path that stores downloaded files. * Ofcourse it will set search path that stores downloaded files.
*/ */
virtual void update(float delta) override; virtual void update();
/* @brief Gets url of package. /* @brief Gets url of package.
*/ */