diff options
author | Alexander Tkachev | 2016-06-05 21:07:55 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 0ce7be17d3fec380f726c1ff16c559344b3e24c1 (patch) | |
tree | b815b220629a466e0286f02c91d36a529057f25e /gui | |
parent | 3db80154d60c98fe27018dc78c875df52c20cfe9 (diff) | |
download | scummvm-rg350-0ce7be17d3fec380f726c1ff16c559344b3e24c1.tar.gz scummvm-rg350-0ce7be17d3fec380f726c1ff16c559344b3e24c1.tar.bz2 scummvm-rg350-0ce7be17d3fec380f726c1ff16c559344b3e24c1.zip |
CLOUD: Make ProgressDialog display downloading progress
Diffstat (limited to 'gui')
-rw-r--r-- | gui/saveload-dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/saveload-dialog.cpp b/gui/saveload-dialog.cpp index bdae9efea4..6d343c88ed 100644 --- a/gui/saveload-dialog.cpp +++ b/gui/saveload-dialog.cpp @@ -52,7 +52,7 @@ SaveLoadCloudSyncProgressDialog::SaveLoadCloudSyncProgressDialog(): Dialog(10, 1 int buttonWidth = 140; int marginBottom = 8; - uint32 progress = (uint32)(100 * CloudMan.getSyncProgress()); + uint32 progress = (uint32)(100 * CloudMan.getSyncDownloadingProgress()); _label = new StaticTextWidget(this, 10, 10, 300, kLineHeight, Common::String::format("Downloading saves (%u%% complete)...", progress), Graphics::kTextAlignCenter); //if (defaultButton) |