[Scummvm-git-logs] scummvm master -> 7f979cc053c930c5222055c15fec15361c69a161
digitall
547637+digitall at users.noreply.github.com
Mon Sep 30 06:10:19 CEST 2019
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:
7f979cc053 GLK: ADRIFT: Fix Remaining GCC Fallthrough Warnings
Commit: 7f979cc053c930c5222055c15fec15361c69a161
https://github.com/scummvm/scummvm/commit/7f979cc053c930c5222055c15fec15361c69a161
Author: D G Turner (digitall at scummvm.org)
Date: 2019-09-30T05:07:31+01:00
Commit Message:
GLK: ADRIFT: Fix Remaining GCC Fallthrough Warnings
Changed paths:
engines/glk/adrift/sctasks.cpp
diff --git a/engines/glk/adrift/sctasks.cpp b/engines/glk/adrift/sctasks.cpp
index 6413738..6f89133 100644
--- a/engines/glk/adrift/sctasks.cpp
+++ b/engines/glk/adrift/sctasks.cpp
@@ -642,6 +642,7 @@ static void task_run_change_variable_action(sc_gameref_t game,
" unknown integer change type, %ld\n", var2);
break;
}
+ break;
case TAFVAR_STRING: /* String */
@@ -687,6 +688,7 @@ static void task_run_change_variable_action(sc_gameref_t game,
" unknown string change type, %ld\n", var2);
break;
}
+ break;
default:
sc_fatal("task_run_change_variable_action:"
More information about the Scummvm-git-logs
mailing list