diff options
author | Paul Gilbert | 2018-12-09 11:39:30 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-09 11:39:30 -0800 |
commit | 4f255335baf27a7351bda1fab369739692ddcb9b (patch) | |
tree | ad2a87f626780b5a5f72d3e4e1ed5e1a99e1299e | |
parent | 7637edb5a2e84c0abbf1c1aa156772ce1f7906c3 (diff) | |
download | scummvm-rg350-4f255335baf27a7351bda1fab369739692ddcb9b.tar.gz scummvm-rg350-4f255335baf27a7351bda1fab369739692ddcb9b.tar.bz2 scummvm-rg350-4f255335baf27a7351bda1fab369739692ddcb9b.zip |
GLK: Correct phrasing of switch case fall through comments
-rw-r--r-- | engines/glk/frotz/quetzal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/frotz/quetzal.cpp b/engines/glk/frotz/quetzal.cpp index d727515890..11fc3f4a26 100644 --- a/engines/glk/frotz/quetzal.cpp +++ b/engines/glk/frotz/quetzal.cpp @@ -450,7 +450,7 @@ int Quetzal::restore(Common::SeekableReadStream *svf, Processor *proc) { break; } - // Intentional fall-through on error + // fall through case ID_UMem: if (!(progress & GOT_MEMORY)) { @@ -467,7 +467,7 @@ int Quetzal::restore(Common::SeekableReadStream *svf, Processor *proc) { // Fall into default action (skip chunk) on errors } - // Intentional fall-through on error + // fall through default: svf->seek(currlen, SEEK_CUR); // Skip chunk |