[Scummvm-cvs-logs] SF.net SVN: scummvm: [29579] scummvm/trunk/engines/agi/preagi_mickey.cpp

thebluegr at users.sourceforge.net thebluegr at users.sourceforge.net
Tue Nov 20 17:44:17 CET 2007


Revision: 29579
          http://scummvm.svn.sourceforge.net/scummvm/?rev=29579&view=rev
Author:   thebluegr
Date:     2007-11-20 08:44:16 -0800 (Tue, 20 Nov 2007)

Log Message:
-----------
Slight fix for the sound in Mickey's Space Adventure

Modified Paths:
--------------
    scummvm/trunk/engines/agi/preagi_mickey.cpp

Modified: scummvm/trunk/engines/agi/preagi_mickey.cpp
===================================================================
--- scummvm/trunk/engines/agi/preagi_mickey.cpp	2007-11-20 12:48:59 UTC (rev 29578)
+++ scummvm/trunk/engines/agi/preagi_mickey.cpp	2007-11-20 16:44:16 UTC (rev 29579)
@@ -35,7 +35,6 @@
 
 #define IDI_SND_OSCILLATOR_FREQUENCY	1193180
 #define IDI_SND_TIMER_RESOLUTION		0.0182
-#define IDI_SND_PITCH					1.5
 
 namespace Agi {
 
@@ -585,7 +584,7 @@
 		// Pause
 		_vm->_system->delayMillis(note.length / IDI_SND_TIMER_RESOLUTION);
 	} else {
-		_vm->playNote(IDI_SND_OSCILLATOR_FREQUENCY / note.counter, note.length / IDI_SND_TIMER_RESOLUTION / IDI_SND_PITCH);
+		_vm->playNote(IDI_SND_OSCILLATOR_FREQUENCY / note.counter, note.length / IDI_SND_TIMER_RESOLUTION);
 	}
 }
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list