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

dreammaster noreply at scummvm.org
Mon Sep 8 10:12:41 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:
dba96eefc8 BAGEL: Fix Maze O' Doom Demo


Commit: dba96eefc8a7096788717de97e5e81305fe983fd
    https://github.com/scummvm/scummvm/commit/dba96eefc8a7096788717de97e5e81305fe983fd
Author: Christian Kündig (christian at kuendig.info)
Date: 2025-09-08T03:12:36-07:00

Commit Message:
BAGEL: Fix Maze O' Doom Demo

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


diff --git a/engines/bagel/hodjnpodj/hodjnpodj.cpp b/engines/bagel/hodjnpodj/hodjnpodj.cpp
index 8c9a401197b..6e59d565b8d 100644
--- a/engines/bagel/hodjnpodj/hodjnpodj.cpp
+++ b/engines/bagel/hodjnpodj/hodjnpodj.cpp
@@ -70,9 +70,6 @@ Common::Error HodjNPodjEngine::run() {
 
 	} else {
 		Metagame::Frame::CTheApp app;
-		app.InitApplication();
-		app.InitInstance();
-		app.setKeybinder(KeybindToKeycode);
 
 		if (getGameId() == "mazeodoom") {
 			app.setStartupMinigame("mazedoom_demo");
@@ -86,6 +83,9 @@ Common::Error HodjNPodjEngine::run() {
 			if (!minigame.empty())
 				app.setStartupMinigame(minigame);
 		}
+		app.InitApplication();
+		app.InitInstance();
+		app.setKeybinder(KeybindToKeycode);
 
 		app.Run();
 	}




More information about the Scummvm-git-logs mailing list