aboutsummaryrefslogtreecommitdiff
path: root/engines/draci/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/draci/sound.cpp')
-rw-r--r--engines/draci/sound.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/draci/sound.cpp b/engines/draci/sound.cpp
index cbc9eb983d..953e1355ff 100644
--- a/engines/draci/sound.cpp
+++ b/engines/draci/sound.cpp
@@ -151,7 +151,7 @@ void LegacySoundArchive::clearCache() {
*/
SoundSample *LegacySoundArchive::getSample(int i, uint freq) {
// Check whether requested file exists
- if (i < 0 || i >= (int) _sampleCount) {
+ if (i < 0 || i >= (int)_sampleCount) {
return NULL;
}
@@ -230,7 +230,7 @@ void ZipSoundArchive::clearCache() {
}
SoundSample *ZipSoundArchive::getSample(int i, uint freq) {
- if (i < 0 || i >= (int) _sampleCount) {
+ if (i < 0 || i >= (int)_sampleCount) {
return NULL;
}
debugCN(2, kDraciArchiverDebugLevel, "Accessing sample %d.%s from archive %s (format %d@%d, capacity %d): ",