diff options
author | D G Turner | 2019-08-03 14:27:57 +0100 |
---|---|---|
committer | D G Turner | 2019-08-03 14:27:57 +0100 |
commit | d638c1d384cca8b1cf0d1678c6c4f27f8c98334e (patch) | |
tree | 39927ba10c8f41183b5bcda4db64001f21969f78 /gui | |
parent | f234a36a27fbefcba4fa56d9cf4e0f460ba306dd (diff) | |
download | scummvm-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')
-rw-r--r-- | gui/options.cpp | 2 |
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) |