aboutsummaryrefslogtreecommitdiff
path: root/engines/fullpipe/sound.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/fullpipe/sound.h')
-rw-r--r--engines/fullpipe/sound.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/sound.h b/engines/fullpipe/sound.h
index ea1cf2c9bf..bccf2a781c 100644
--- a/engines/fullpipe/sound.h
+++ b/engines/fullpipe/sound.h
@@ -67,9 +67,9 @@ class SoundList : public CObject {
public:
SoundList();
~SoundList();
- virtual bool load(MfcArchive &file, Common::String fname);
+ virtual bool load(MfcArchive &file, const Common::String &fname);
virtual bool load(MfcArchive &file) { assert(0); return false; } // Disable base class
- bool loadFile(Common::String fname, Common::String libname);
+ bool loadFile(const Common::String &fname, const Common::String &libname);
int getCount() { return _soundItemsCount; }
Sound *getSoundByIndex(int idx) { return _soundItems[idx]; }