diff options
author | Bastien Bouclet | 2017-08-06 17:53:57 +0200 |
---|---|---|
committer | Bastien Bouclet | 2017-08-06 17:55:33 +0200 |
commit | f5b335af100c84d2ad761548825548d6fe3be125 (patch) | |
tree | 09bc90ef40d55492989fb48ab9102548dbe8bbad /gui/ThemeEngine.cpp | |
parent | 8e5ac98a4b6082caf68ad205dc6cadffa4df5051 (diff) | |
download | scummvm-rg350-f5b335af100c84d2ad761548825548d6fe3be125.tar.gz scummvm-rg350-f5b335af100c84d2ad761548825548d6fe3be125.tar.bz2 scummvm-rg350-f5b335af100c84d2ad761548825548d6fe3be125.zip |
GUI: Mark some fall-through cases as intentional
Comments explain how the num lock handling works before the
fall-through cases.
Diffstat (limited to 'gui/ThemeEngine.cpp')
-rw-r--r-- | gui/ThemeEngine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gui/ThemeEngine.cpp b/gui/ThemeEngine.cpp index d340047b1c..5c0b23279f 100644 --- a/gui/ThemeEngine.cpp +++ b/gui/ThemeEngine.cpp @@ -630,6 +630,7 @@ void ThemeEngine::setGraphicsMode(GraphicsMode mode) { _bytesPerPixel = sizeof(uint16); break; } + // fall through default: error("Invalid graphics mode"); } |