aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25')
-rw-r--r--engines/sword25/util/lua/ltable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/util/lua/ltable.cpp b/engines/sword25/util/lua/ltable.cpp
index 45381fe673..76de991f25 100644
--- a/engines/sword25/util/lua/ltable.cpp
+++ b/engines/sword25/util/lua/ltable.cpp
@@ -478,8 +478,8 @@ const TValue *luaH_get (Table *t, const TValue *key) {
lua_number2int(k, n);
if (luai_numeq(cast_num(k), nvalue(key))) /* index is int? */
return luaH_getnum(t, k); /* use specialized version */
- /* else go through */
}
+ /* fall through */
default: {
Node *n = mainposition(t, key);
do { /* check whether `key' is somewhere in the chain */