aboutsummaryrefslogtreecommitdiff
path: root/scumm/bundle.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/bundle.h')
-rw-r--r--scumm/bundle.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/scumm/bundle.h b/scumm/bundle.h
index 7bcb8b27f4..e8d1832e2f 100644
--- a/scumm/bundle.h
+++ b/scumm/bundle.h
@@ -67,12 +67,12 @@ public:
bool openMusicFile(const char *filename, const char *directory);
void closeVoiceFile() { _voiceFile.close(); }
void closeMusicFile() { _musicFile.close(); }
- int32 decompressVoiceSampleByName(char *name, byte **comp_final);
+ int32 decompressVoiceSampleByName(const char *name, byte **comp_final);
int32 decompressVoiceSampleByIndex(int32 index, byte **comp_final);
- int32 decompressMusicSampleByName(char *name, int32 number, byte *comp_final);
+ int32 decompressMusicSampleByName(const char *name, int32 number, byte *comp_final);
int32 decompressMusicSampleByIndex(int32 index, int32 number, byte *comp_final);
int32 getNumberOfMusicSamplesByIndex(int32 index);
- int32 getNumberOfMusicSamplesByName(char *name);
+ int32 getNumberOfMusicSamplesByName(const char *name);
};
#endif