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

neuromancer noreply at scummvm.org
Tue Jun 2 18:30:49 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:
f6426933dc SCUMM: RA: support female voice output


Commit: f6426933dcd09b5d36dcd2e7218d143c8fc2ac69
    https://github.com/scummvm/scummvm/commit/f6426933dcd09b5d36dcd2e7218d143c8fc2ac69
Author: Manuel Lauss (manuel.lauss at gmail.com)
Date: 2026-06-02T20:30:45+02:00

Commit Message:
SCUMM: RA: support female voice output

smushAudioTable[4] (sou_hooks[] in the original source) indicates which
gender voice track to play.

Changed paths:
    engines/scumm/insane/rebel1/menu.cpp


diff --git a/engines/scumm/insane/rebel1/menu.cpp b/engines/scumm/insane/rebel1/menu.cpp
index 4a88a5e9b92..af7cb44fdaa 100644
--- a/engines/scumm/insane/rebel1/menu.cpp
+++ b/engines/scumm/insane/rebel1/menu.cpp
@@ -1224,6 +1224,7 @@ void InsaneRebel1::runOptionsMenu() {
 				return;
 			case 1: // Toggle Rookie One gender
 				_optRookieOneFemale = !_optRookieOneFemale;
+				_player->_smushAudioTable[4] = _optRookieOneFemale ? 1 : 0;
 				break;
 			case 2: // Toggle music
 				_optMusicEnabled = !_optMusicEnabled;




More information about the Scummvm-git-logs mailing list