[Scummvm-git-logs] scummvm branch-3-0 -> 43bc4551fc8db0313704c4df7c56b390be72825d

dreammaster noreply at scummvm.org
Thu Nov 27 10:00:47 UTC 2025


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:
43bc4551fc BAGEL: MINIGAMES: Should quit check during Garfunkle instruments anim


Commit: 43bc4551fc8db0313704c4df7c56b390be72825d
    https://github.com/scummvm/scummvm/commit/43bc4551fc8db0313704c4df7c56b390be72825d
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2025-11-27T02:00:24-08:00

Commit Message:
BAGEL: MINIGAMES: Should quit check during Garfunkle instruments anim

Changed paths:
    engines/bagel/hodjnpodj/garfunkle/garfunkle.cpp


diff --git a/engines/bagel/hodjnpodj/garfunkle/garfunkle.cpp b/engines/bagel/hodjnpodj/garfunkle/garfunkle.cpp
index a41b30b5328..ce5e7ba26ac 100644
--- a/engines/bagel/hodjnpodj/garfunkle/garfunkle.cpp
+++ b/engines/bagel/hodjnpodj/garfunkle/garfunkle.cpp
@@ -1088,6 +1088,9 @@ void CMainWindow::PlayBackSeries(int nNumNotes) {
 
 	pNewNote = CNote::GetNoteHead();
 	for (i = nNumNotes; i > 0; --i) {
+		if (g_engine->shouldQuit())
+			break;
+
 		if (pNewNote) {                                                              // If this isn't the end
 			m_nButID = pNewNote->GetValue();                                        // Get the new note
 




More information about the Scummvm-git-logs mailing list