aboutsummaryrefslogtreecommitdiff
path: root/audio/softsynth/cms.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'audio/softsynth/cms.cpp')
-rw-r--r--audio/softsynth/cms.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/softsynth/cms.cpp b/audio/softsynth/cms.cpp
index 67eacd1a41..889f19a6f9 100644
--- a/audio/softsynth/cms.cpp
+++ b/audio/softsynth/cms.cpp
@@ -244,8 +244,8 @@ void CMSEmulator::update(int chip, int16 *buffer, int length) {
}
}
/* write sound data to the buffer */
- buffer[j*2] += output_l / 6;
- buffer[j*2+1] += output_r / 6;
+ buffer[j*2+0] = CLIP<int>(buffer[j*2+0] + output_l / 6, -32768, 32767);
+ buffer[j*2+1] = CLIP<int>(buffer[j*2+1] + output_r / 6, -32768, 32767);
}
}