aboutsummaryrefslogtreecommitdiff
path: root/gui/options.cpp
diff options
context:
space:
mode:
authorD G Turner2019-08-03 14:27:57 +0100
committerD G Turner2019-08-03 14:27:57 +0100
commitd638c1d384cca8b1cf0d1678c6c4f27f8c98334e (patch)
tree39927ba10c8f41183b5bcda4db64001f21969f78 /gui/options.cpp
parentf234a36a27fbefcba4fa56d9cf4e0f460ba306dd (diff)
downloadscummvm-rg350-d638c1d384cca8b1cf0d1678c6c4f27f8c98334e.tar.gz
scummvm-rg350-d638c1d384cca8b1cf0d1678c6c4f27f8c98334e.tar.bz2
scummvm-rg350-d638c1d384cca8b1cf0d1678c6c4f27f8c98334e.zip
GUI: Fix GCC Compiler Warning in Cloud Tab
This comment for fall through to prevent the compiler warning about this has to be at the point of fallthrough i.e. outside the grouping brackets to be effective.
Diffstat (limited to 'gui/options.cpp')
-rw-r--r--gui/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index f05699e209..b3f1817c56 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -2262,8 +2262,8 @@ void GlobalOptionsDialog::handleCommand(CommandSender *sender, uint32 cmd, uint3
_redrawCloudTab = true;
// also, automatically start saves sync when user enables the storage
- // fall through
}
+ // fall through
case kSyncSavesStorageCmd: {
CloudMan.syncSaves(
new Common::Callback<GlobalOptionsDialog, Cloud::Storage::BoolResponse>(this, &GlobalOptionsDialog::storageSavesSyncedCallback)