aboutsummaryrefslogtreecommitdiff
path: root/engines/glk/blorb.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2018-12-07 21:52:24 -0800
committerPaul Gilbert2018-12-08 19:05:59 -0800
commit3661fc61ec319752a767e5981581ded026a57dd1 (patch)
treef8fb4b8852a9c2576a728ef27298622de5556648 /engines/glk/blorb.cpp
parentf6abb3ea33c7b073066732f794a9d071c38a044d (diff)
downloadscummvm-rg350-3661fc61ec319752a767e5981581ded026a57dd1.tar.gz
scummvm-rg350-3661fc61ec319752a767e5981581ded026a57dd1.tar.bz2
scummvm-rg350-3661fc61ec319752a767e5981581ded026a57dd1.zip
GLK: Beginnings of Sounds manager
Diffstat (limited to 'engines/glk/blorb.cpp')
-rw-r--r--engines/glk/blorb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/glk/blorb.cpp b/engines/glk/blorb.cpp
index 038a79e046..5ffd0b03b0 100644
--- a/engines/glk/blorb.cpp
+++ b/engines/glk/blorb.cpp
@@ -146,7 +146,7 @@ Common::ErrorCode Blorb::load() {
ce._filename += ".rect";
} else if (ce._type == ID_Snd) {
- ce._filename = Common::String::format("snd%u", ce._number);
+ ce._filename = Common::String::format("sound%u", ce._number);
if (ce._id == ID_MIDI)
ce._filename += ".midi";
else if (ce._id == ID_MP3)
@@ -156,7 +156,7 @@ Common::ErrorCode Blorb::load() {
else if (ce._id == ID_AIFF)
ce._filename += ".aiff";
else if (ce._id == ID_OGG)
- ce._filename += ".ogg";
+ ce._filename += ".ogg";
else if (ce._id == ID_MOD)
ce._filename += ".mod";