diff options
| author | Alexander Tkachev | 2019-07-23 23:46:25 +0700 |
|---|---|---|
| committer | Matan Bareket | 2019-07-30 14:51:41 -0400 |
| commit | 16d97b6948326eb07e49b57a567b469493fa1916 (patch) | |
| tree | 791603b0b177c8d4b8bfa2317971bf9e950fa9e3 /gui | |
| parent | f7902583bc7a3aac702d10488e47805742753d0a (diff) | |
| download | scummvm-rg350-16d97b6948326eb07e49b57a567b469493fa1916.tar.gz scummvm-rg350-16d97b6948326eb07e49b57a567b469493fa1916.tar.bz2 scummvm-rg350-16d97b6948326eb07e49b57a567b469493fa1916.zip | |
CLOUD: Minor fixes for the PR#1754
- added missing 'd' in "%d" in SavesSyncRequest;
- removed trailing ',' in enum in gui/options.h;
- fixed #endif to have // before USE_LIBCURL in gui/options.h.
Diffstat (limited to 'gui')
| -rw-r--r-- | gui/options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/options.cpp b/gui/options.cpp index 6be08d40cb..7d9558a4a7 100644 --- a/gui/options.cpp +++ b/gui/options.cpp @@ -114,7 +114,7 @@ enum { kConnectStorageCmd = 'Cnnt', kOpenUrlStorageCmd = 'OpUr', kPasteCodeStorageCmd = 'PsCd', - kDisconnectStorageCmd = 'DcSt', + kDisconnectStorageCmd = 'DcSt' }; #endif @@ -1760,7 +1760,7 @@ void GlobalOptionsDialog::build() { setTarget(container); addCloudControls(container, "GlobalOptions_Cloud_Container.", context); -#endif USE_LIBCURL +#endif // USE_LIBCURL #ifdef USE_SDL_NET // // 8) The LAN tab (local "cloud" webserver) |
