aboutsummaryrefslogtreecommitdiff
path: root/gui/saveload.cpp
diff options
context:
space:
mode:
authorAlexander Tkachev2016-07-05 15:05:30 +0600
committerAlexander Tkachev2016-08-24 16:07:55 +0600
commit3da38ca60b65d3f1bd67b049f3c4b2a90a4d6a19 (patch)
tree6c5d1175fb367bc6e73a86d1ff73a39ca467bc95 /gui/saveload.cpp
parent211d9ed5f67712f5e0a1b23e7b3fb492b5256f89 (diff)
downloadscummvm-rg350-3da38ca60b65d3f1bd67b049f3c4b2a90a4d6a19.tar.gz
scummvm-rg350-3da38ca60b65d3f1bd67b049f3c4b2a90a4d6a19.tar.bz2
scummvm-rg350-3da38ca60b65d3f1bd67b049f3c4b2a90a4d6a19.zip
CLOUD: Replace USE_CLOUD with USE_LIBCURL
In most cases that's the right one to check. USE_CLOUD is defined when either USE_LIBCURL or USE_SDL_NET are, which means if there is no curl, USE_CLOUD still could be defined and linking errors would appear.
Diffstat (limited to 'gui/saveload.cpp')
-rw-r--r--gui/saveload.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/saveload.cpp b/gui/saveload.cpp
index b08ab7fd1a..3072aa6082 100644
--- a/gui/saveload.cpp
+++ b/gui/saveload.cpp
@@ -87,7 +87,7 @@ int SaveLoadChooser::runModalWithPluginAndTarget(const EnginePlugin *plugin, con
if (!_impl)
return -1;
-#ifdef USE_CLOUD
+#ifdef USE_LIBCURL
_impl->runSaveSync(ConfMan.hasKey("savepath", target));
#endif