[Scummvm-git-logs] scummvm master -> afadfc5d52c77fe755c74f149330d7b247aa9304
digitall
noreply at scummvm.org
Mon Mar 6 16:01:27 UTC 2023
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:
afadfc5d52 MM: MM1: Fix Unhandled Case in Switch GCC Compiler Warnings
Commit: afadfc5d52c77fe755c74f149330d7b247aa9304
https://github.com/scummvm/scummvm/commit/afadfc5d52c77fe755c74f149330d7b247aa9304
Author: D G Turner (digitall at scummvm.org)
Date: 2023-03-06T16:00:59Z
Commit Message:
MM: MM1: Fix Unhandled Case in Switch GCC Compiler Warnings
Changed paths:
engines/mm/mm1/views_enh/character_manage.cpp
diff --git a/engines/mm/mm1/views_enh/character_manage.cpp b/engines/mm/mm1/views_enh/character_manage.cpp
index c65dac34ef6..0776adfc677 100644
--- a/engines/mm/mm1/views_enh/character_manage.cpp
+++ b/engines/mm/mm1/views_enh/character_manage.cpp
@@ -99,6 +99,8 @@ bool CharacterManage::msgKeypress(const KeypressMessage &msg) {
case Common::KEYCODE_d:
setMode(DELETE);
break;
+ default:
+ break;
}
break;
More information about the Scummvm-git-logs
mailing list