aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sound.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/sound.cpp')
-rw-r--r--engines/sludge/sound.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sludge/sound.cpp b/engines/sludge/sound.cpp
index a92a51c174..d77f3d4e63 100644
--- a/engines/sludge/sound.cpp
+++ b/engines/sludge/sound.cpp
@@ -267,8 +267,8 @@ bool playMOD(int f, int a, int fromTrack) {
return false;
}
- unsigned char *memImage;
- memImage = (unsigned char *) loadEntireFileToMemory(bigDataFile, length);
+ byte *memImage;
+ memImage = (byte *) loadEntireFileToMemory(bigDataFile, length);
if (! memImage) return fatal(ERROR_MUSIC_MEMORY_LOW);
modCache[a].stream = alureCreateStreamFromMemory(memImage, length, 19200, 0, NULL);
@@ -641,7 +641,7 @@ int initMovieSound(int f, ALenum format, int audioChannels, ALuint samplerate,
}
#endif
-unsigned int getSoundSource(int index) {
+uint getSoundSource(int index) {
return 0; /*soundCache[index].playingOnSource;*/ //TODO:false value
}