aboutsummaryrefslogtreecommitdiff
path: root/backends/cloud/savessyncrequest.cpp
diff options
context:
space:
mode:
authorAlexander Tkachev2016-06-05 15:44:05 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commite7763700e2e2016f4573e3feb77b5fab69268683 (patch)
tree11f66f0ea476782613618451d5630d1e32a04a92 /backends/cloud/savessyncrequest.cpp
parent8de2862eaa6513c43502bea86f53967015298884 (diff)
downloadscummvm-rg350-e7763700e2e2016f4573e3feb77b5fab69268683.tar.gz
scummvm-rg350-e7763700e2e2016f4573e3feb77b5fab69268683.tar.bz2
scummvm-rg350-e7763700e2e2016f4573e3feb77b5fab69268683.zip
CLOUD: Make Save/Load dialog start saves sync
It also shows a "sync disabled" icon in case it has a savepath override.
Diffstat (limited to 'backends/cloud/savessyncrequest.cpp')
-rw-r--r--backends/cloud/savessyncrequest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/cloud/savessyncrequest.cpp b/backends/cloud/savessyncrequest.cpp
index b952681bff..a99c229925 100644
--- a/backends/cloud/savessyncrequest.cpp
+++ b/backends/cloud/savessyncrequest.cpp
@@ -33,7 +33,7 @@ namespace Cloud {
const char *SavesSyncRequest::TIMESTAMPS_FILENAME = "timestamps";
SavesSyncRequest::SavesSyncRequest(Storage *storage, Storage::BoolCallback callback, Networking::ErrorCallback ecb):
- Request(nullptr, ecb), _storage(storage), _boolCallback(callback),
+ Request(nullptr, ecb), CommandSender(nullptr), _storage(storage), _boolCallback(callback),
_workingRequest(nullptr), _ignoreCallback(false) {
start();
}