aboutsummaryrefslogtreecommitdiff
path: root/simon/sound.cpp
diff options
context:
space:
mode:
authorOliver Kiehl2002-12-10 09:50:22 +0000
committerOliver Kiehl2002-12-10 09:50:22 +0000
commit6582e62e14877967e2fb6d16d70606f7e1805f96 (patch)
tree1e78a5e980e40df0b08ca3724c73747f1f2c4f2d /simon/sound.cpp
parent098b1d52ca7ad394eaee0481c6c43ed0234166f6 (diff)
downloadscummvm-rg350-6582e62e14877967e2fb6d16d70606f7e1805f96.tar.gz
scummvm-rg350-6582e62e14877967e2fb6d16d70606f7e1805f96.tar.bz2
scummvm-rg350-6582e62e14877967e2fb6d16d70606f7e1805f96.zip
fixed compile error in VC++
svn-id: r5897
Diffstat (limited to 'simon/sound.cpp')
-rw-r--r--simon/sound.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/simon/sound.cpp b/simon/sound.cpp
index 3c316396b5..fd036d27ed 100644
--- a/simon/sound.cpp
+++ b/simon/sound.cpp
@@ -94,10 +94,12 @@ void SimonSound::readSfxFile(const char *filename, const char *gameDataPath)
file->open(filename, gameDataPath);
if (file->isOpen() == false) {
- char filename2[strlen(filename) + 1];
+ char *filename2;
+ filename2 = (char *)malloc(strlen(filename) + 1);
strcpy(filename2, filename);
strcat(filename2, ".");
file->open(filename2, gameDataPath);
+ free(filename2);
if (file->isOpen() == false) {
if (atoi(filename + 6) != 1 && atoi(filename + 6) != 30)
warning("readSfxFile: Cannot load sfx file %s", filename);