[Scummvm-git-logs] scummvm master -> 937964ab59e688dce19d99c4d0d985d2dbbd6a3a
digitall
noreply at scummvm.org
Thu Mar 9 19:43:10 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:
937964ab59 MM: MM1: Fix Unhandled Enumeration in Switch GCC Compiler Warning
Commit: 937964ab59e688dce19d99c4d0d985d2dbbd6a3a
https://github.com/scummvm/scummvm/commit/937964ab59e688dce19d99c4d0d985d2dbbd6a3a
Author: D G Turner (digitall at scummvm.org)
Date: 2023-03-09T19:42:39Z
Commit Message:
MM: MM1: Fix Unhandled Enumeration in Switch GCC Compiler Warning
Changed paths:
engines/mm/mm1/views_enh/create_characters.cpp
diff --git a/engines/mm/mm1/views_enh/create_characters.cpp b/engines/mm/mm1/views_enh/create_characters.cpp
index d84f3d5ab02..c4dcff75839 100644
--- a/engines/mm/mm1/views_enh/create_characters.cpp
+++ b/engines/mm/mm1/views_enh/create_characters.cpp
@@ -500,6 +500,9 @@ bool CreateCharacters::msgKeypress(const KeypressMessage &msg) {
setState(SELECT_CLASS);
redraw();
break;
+
+ case SELECT_NAME:
+ break;
}
return true;
More information about the Scummvm-git-logs
mailing list