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 /backends/platform | |
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 'backends/platform')
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index f07f568828..acb4d999c3 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -160,8 +160,8 @@ void OSystem_SDL::init() { #endif #if defined(USE_CLOUD) - if (_cloudThread == 0) - _cloudThread = new Cloud::Manager(); + if (_cloudManager == 0) + _cloudManager = new Cloud::Manager(); #endif } |