aboutsummaryrefslogtreecommitdiff
path: root/sound/mods/tfmx.cpp
diff options
context:
space:
mode:
authorNorbert Lange2009-08-01 23:14:28 +0000
committerNorbert Lange2009-08-01 23:14:28 +0000
commit59395eb6b61aff29fe438ab4a56b10c94fdd9fc8 (patch)
tree17381913f08858f0b5f2ad0681808bb895dd9153 /sound/mods/tfmx.cpp
parenta28281072d72197526e68a98442df55c9b5918e4 (diff)
downloadscummvm-rg350-59395eb6b61aff29fe438ab4a56b10c94fdd9fc8.tar.gz
scummvm-rg350-59395eb6b61aff29fe438ab4a56b10c94fdd9fc8.tar.bz2
scummvm-rg350-59395eb6b61aff29fe438ab4a56b10c94fdd9fc8.zip
stole formatting for constructors from existing code
svn-id: r42981
Diffstat (limited to 'sound/mods/tfmx.cpp')
-rw-r--r--sound/mods/tfmx.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/sound/mods/tfmx.cpp b/sound/mods/tfmx.cpp
index e8febe96a4..07173f4939 100644
--- a/sound/mods/tfmx.cpp
+++ b/sound/mods/tfmx.cpp
@@ -48,7 +48,12 @@ const uint16 Tfmx::noteIntervalls[64] = {
214, 202, 191, 180 };
Tfmx::Tfmx(int rate, bool stereo)
-: Paula(stereo, rate), _resource(), _resourceSample(), _playerCtx() {
+ : Paula(stereo, rate),
+ _resource(),
+ _resourceSample(),
+ _playerCtx(),
+ _deleteResource(false) {
+
_playerCtx.stopWithLastPattern = false;
for (int i = 0; i < kNumVoices; ++i)
@@ -114,7 +119,7 @@ void Tfmx::interrupt() {
--channel.macroWait;
}
- Paula::setChannelPeriod(channel.paulaChannel, channel.period);
+ Paula::setChannelPeriod(i, channel.period);
if (channel.macroSfxRun >= 0)
channel.macroSfxRun = 1;