diff options
author | Alexander Tkachev | 2016-05-17 01:19:49 +0600 |
---|---|---|
committer | Alexander Tkachev | 2016-08-24 16:07:55 +0600 |
commit | 03217cd5c3de3c17739a246f5967dfd4a14eb120 (patch) | |
tree | d62ee38b8a5d8146bc7bd7f64b68c3dc8c2291e5 /common | |
parent | 9c22b7cc64a3bd074f7cec012bd2f29f210d4ccf (diff) | |
download | scummvm-rg350-03217cd5c3de3c17739a246f5967dfd4a14eb120.tar.gz scummvm-rg350-03217cd5c3de3c17739a246f5967dfd4a14eb120.tar.bz2 scummvm-rg350-03217cd5c3de3c17739a246f5967dfd4a14eb120.zip |
CLOUD: Add CurlJsonRequest
Now we can do REST API request by creating CurlJsonRequest and waiting
for it to call our callback. Passed pointer is Common::JSONValue.
This commit also does some minor variable renaming fixes.
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/system.h b/common/system.h index a3092e794f..815fa9d19d 100644 --- a/common/system.h +++ b/common/system.h @@ -185,7 +185,7 @@ protected: * * @note _cloudThread is deleted by the OSystem destructor. */ - Common::CloudManager *_cloudThread; + Common::CloudManager *_cloudManager; #endif /** @@ -1134,7 +1134,7 @@ public: * @return the CloudManager for the current architecture */ virtual Common::CloudManager *getCloudManager() { - return _cloudThread; + return _cloudManager; } #endif |