[Scummvm-git-logs] scummvm master -> ae6bf128b60e8d069f89d41c18b14b2ff3a82763

mduggan noreply at scummvm.org
Thu Jun 11 11:01:26 UTC 2026


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .

Summary:
ae6bf128b6 ACCESS: Fix unhandled enum value warning in switch


Commit: ae6bf128b60e8d069f89d41c18b14b2ff3a82763
    https://github.com/scummvm/scummvm/commit/ae6bf128b60e8d069f89d41c18b14b2ff3a82763
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2026-06-11T21:00:43+10:00

Commit Message:
ACCESS: Fix unhandled enum value warning in switch

Changed paths:
    engines/access/bubble_box.cpp


diff --git a/engines/access/bubble_box.cpp b/engines/access/bubble_box.cpp
index 5c2246d31ca..7e851dfb4cf 100644
--- a/engines/access/bubble_box.cpp
+++ b/engines/access/bubble_box.cpp
@@ -98,9 +98,11 @@ void BubbleBox::clearBubbles() {
 void BubbleBox::placeBubble(const Common::String &msg) {
 	switch (_vm->getGameID()) {
 		case kGameMartianMemorandum: 	_vm->_screen->_maxChars = 30; break;
+		case kGameCountdown:			_vm->_screen->_maxChars = 40; break;
 		case kGameAmazon: 				_vm->_screen->_maxChars = 27; break;
 		// All Noctropolis messages are pre-wrapped.
 		case kGameNoctropolis: 			_vm->_screen->_maxChars = 200; break;
+		default: error("Unsupported game type in BubbleBox::placeBubble()");
 	}
 	placeBubble1(msg);
 }




More information about the Scummvm-git-logs mailing list