[Scummvm-git-logs] scummvm master -> 75531b2dd1062b3e47bb4a1764cd97a6c0d152c7

eriktorbjorn noreply at scummvm.org
Mon Jun 8 20:46:36 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:
75531b2dd1 MADS: DRAGONSPHERE: Update global_menu_score() comments


Commit: 75531b2dd1062b3e47bb4a1764cd97a6c0d152c7
    https://github.com/scummvm/scummvm/commit/75531b2dd1062b3e47bb4a1764cd97a6c0d152c7
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2026-06-08T22:45:41+02:00

Commit Message:
MADS: DRAGONSPHERE: Update global_menu_score() comments

They still referred to the rankings in Return of the Phantom.

Changed paths:
    engines/mads/madsv2/dragonsphere/menus.cpp


diff --git a/engines/mads/madsv2/dragonsphere/menus.cpp b/engines/mads/madsv2/dragonsphere/menus.cpp
index 39ebcac1388..5ab4e05b32b 100644
--- a/engines/mads/madsv2/dragonsphere/menus.cpp
+++ b/engines/mads/madsv2/dragonsphere/menus.cpp
@@ -136,23 +136,23 @@ static void global_menu_score() {
 	text_index[1] = 250;
 
 	if (score <= 25) {
-		text_index[2] = 1;          /* Stage sweeper */
+		text_index[2] = 1;          /* Dogsbody */
 	} else if (score <= 50) {
-		text_index[2] = 2;          /* Dresser */
+		text_index[2] = 2;          /* Varlet */
 	} else if (score <= 75) {
-		text_index[2] = 3;          /* Usher */
+		text_index[2] = 3;          /* Yeoman */
 	} else if (score <= 100) {
-		text_index[2] = 4;          /* Stagehand */
+		text_index[2] = 4;          /* Squire */
 	} else if (score <= 150) {
-		text_index[2] = 5;          /* Chorus Member */
+		text_index[2] = 5;          /* Knight */
 	} else if (score <= 200) {
-		text_index[2] = 6;          /* Supporting Player */
+		text_index[2] = 6;          /* Petty Noble */
 	} else if (score <= 249) {
-		text_index[2] = 7;          /* Star Player */
+		text_index[2] = 7;          /* Noble */
 	} else if (score <= 250) {
-		text_index[2] = 8;          /* Director */
+		text_index[2] = 8;          /* King */
 	} else {
-		text_index[2] = 9;          /* Bug Finder! */
+		text_index[2] = 9;          /* King+ */
 	}
 
 	text_show(99);




More information about the Scummvm-git-logs mailing list