[Scummvm-git-logs] scummvm master -> 4f255335baf27a7351bda1fab369739692ddcb9b
dreammaster
paulfgilbert at gmail.com
Sun Dec 9 20:39:39 CET 2018
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
4f255335ba GLK: Correct phrasing of switch case fall through comments
Commit: 4f255335baf27a7351bda1fab369739692ddcb9b
https://github.com/scummvm/scummvm/commit/4f255335baf27a7351bda1fab369739692ddcb9b
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2018-12-09T11:39:30-08:00
Commit Message:
GLK: Correct phrasing of switch case fall through comments
Changed paths:
engines/glk/frotz/quetzal.cpp
diff --git a/engines/glk/frotz/quetzal.cpp b/engines/glk/frotz/quetzal.cpp
index d727515..11fc3f4 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
More information about the Scummvm-git-logs
mailing list