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

bluegr noreply at scummvm.org
Tue Feb 10 23:33:40 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:
ed12c664f6 DREAMCAST: Update game selector logic


Commit: ed12c664f6d56ec6d200f4c3be96b9371cd3ee8b
    https://github.com/scummvm/scummvm/commit/ed12c664f6d56ec6d200f4c3be96b9371cd3ee8b
Author: mark-temporary (bauermeistermarkusdev at gmail.com)
Date: 2026-02-11T01:33:36+02:00

Commit Message:
DREAMCAST: Update game selector logic

If only a single game detected, skip the GUI and automatically launch the game.

Changed paths:
    backends/platform/dc/selector.cpp


diff --git a/backends/platform/dc/selector.cpp b/backends/platform/dc/selector.cpp
index 53f3dda0858..380dafe9acb 100644
--- a/backends/platform/dc/selector.cpp
+++ b/backends/platform/dc/selector.cpp
@@ -272,6 +272,9 @@ int gameMenu(Game *games, int num_games)
   if (!num_games)
 	return -1;
 
+  if (num_games == 1)
+	  return 0;
+
   for (;;) {
 
 	if (getCdState()>=6)




More information about the Scummvm-git-logs mailing list