[Scummvm-cvs-logs] scummvm master -> 732006611327898436da8b58f57611ffe39b4455

Strangerke Strangerke at scummvm.org
Tue Nov 29 23:28:27 CET 2011


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
7320066113 CGE: Remove key sound in System::touch().


Commit: 732006611327898436da8b58f57611ffe39b4455
    https://github.com/scummvm/scummvm/commit/732006611327898436da8b58f57611ffe39b4455
Author: Strangerke (strangerke at scummvm.org)
Date: 2011-11-29T14:27:35-08:00

Commit Message:
CGE: Remove key sound in System::touch().

ALTering dice no longer is no longer noisy

Changed paths:
    engines/cge/cge_main.cpp



diff --git a/engines/cge/cge_main.cpp b/engines/cge/cge_main.cpp
index 01bd037..db47c61 100644
--- a/engines/cge/cge_main.cpp
+++ b/engines/cge/cge_main.cpp
@@ -757,7 +757,8 @@ void System::touch(uint16 mask, int x, int y) {
 	funTouch();
 
 	if (mask & kEventKeyb) {
-		_vm->keyClick();
+		// The original was calling keyClick() 
+		// The sound is uselessly annoying and noisy, so it has been removed
 		_vm->killText();
 		if (_vm->_startupMode == 1) {
 			_vm->_commandHandler->addCommand(kCmdClear, -1, 0, NULL);






More information about the Scummvm-git-logs mailing list