diff options
author | Torbjörn Andersson | 2017-08-06 16:40:42 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2017-08-06 16:40:42 +0200 |
commit | 3d8d5541dc1ccdeae78b86f869f83b3d5b798e15 (patch) | |
tree | 7cd078ca15f038b1ef7ca698bbdd6f580869ecce | |
parent | a70767503e6a27d4f42a97033971ca4d760df32c (diff) | |
download | scummvm-rg350-3d8d5541dc1ccdeae78b86f869f83b3d5b798e15.tar.gz scummvm-rg350-3d8d5541dc1ccdeae78b86f869f83b3d5b798e15.tar.bz2 scummvm-rg350-3d8d5541dc1ccdeae78b86f869f83b3d5b798e15.zip |
JANITORIAL: Silence GCC 7 fall through warning
-rw-r--r-- | engines/sword25/util/lua/ldebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/util/lua/ldebug.cpp b/engines/sword25/util/lua/ldebug.cpp index 396c5df18b..96607d8e2a 100644 --- a/engines/sword25/util/lua/ldebug.cpp +++ b/engines/sword25/util/lua/ldebug.cpp @@ -394,7 +394,7 @@ static Instruction symbexec (const Proto *pt, int lastpc, int reg) { case OP_FORLOOP: case OP_FORPREP: checkreg(pt, a+3); - /* go through */ + /* fall through */ case OP_JMP: { int dest = pc+1+b; /* not full check and jump is forward and do not skip `lastpc'? */ |