[Scummvm-cvs-logs] scummvm master -> 28d97d0f552329d14833fe5da7b8998e2159fd73

csnover csnover at users.noreply.github.com
Thu Jun 30 22:15:24 CEST 2016


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:
28d97d0f55 SCI32: Specify default hardware rates


Commit: 28d97d0f552329d14833fe5da7b8998e2159fd73
    https://github.com/scummvm/scummvm/commit/28d97d0f552329d14833fe5da7b8998e2159fd73
Author: Colin Snover (github.com at zetafleet.com)
Date: 2016-06-30T15:15:12-05:00

Commit Message:
SCI32: Specify default hardware rates

This normally happens in SSCI when the audio hardware is
initialised.

CID 1357048

Changed paths:
    engines/sci/sound/audio32.cpp



diff --git a/engines/sci/sound/audio32.cpp b/engines/sci/sound/audio32.cpp
index 20595b0..ced88a3 100644
--- a/engines/sci/sound/audio32.cpp
+++ b/engines/sci/sound/audio32.cpp
@@ -109,8 +109,11 @@ Audio32::Audio32(ResourceManager *resMan) :
 	_numActiveChannels(0),
 	_inAudioThread(false),
 
+	_globalSampleRate(44100),
 	_maxAllowedSampleRate(44100),
+	_globalBitDepth(16),
 	_maxAllowedBitDepth(16),
+	_globalNumOutputChannels(2),
 	_maxAllowedOutputChannels(2),
 	_preload(0),
 






More information about the Scummvm-git-logs mailing list