aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/glk/frotz/sound_folder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/frotz/sound_folder.cpp b/engines/glk/frotz/sound_folder.cpp
index 91916c4ddc..fd99b0b2b1 100644
--- a/engines/glk/frotz/sound_folder.cpp
+++ b/engines/glk/frotz/sound_folder.cpp
@@ -90,7 +90,7 @@ void SoundZip::check(const Common::FSNode &gameDir, Story story) {
if (!zipNode.exists())
return;
- SearchMan.add("sound", Common::makeZipArchive(zipNode));
+ SearchMan.add("sound", new SoundZip(Common::makeZipArchive(zipNode)));
}
SoundZip::SoundZip(Common::Archive *zip) : _zip(zip) {