diff options
author | Joost Peters | 2004-01-25 18:41:26 +0000 |
---|---|---|
committer | Joost Peters | 2004-01-25 18:41:26 +0000 |
commit | b106eb1e43e8f5a3c3fd78e547b2f7945969375b (patch) | |
tree | fbb914ac6f5828a2b219400b35625f4f209f6e81 | |
parent | fde0a08cc91aebfe6449f7ce609204a9842153d1 (diff) | |
download | scummvm-rg350-b106eb1e43e8f5a3c3fd78e547b2f7945969375b.tar.gz scummvm-rg350-b106eb1e43e8f5a3c3fd78e547b2f7945969375b.tar.bz2 scummvm-rg350-b106eb1e43e8f5a3c3fd78e547b2f7945969375b.zip |
Fix missing song at airport. Thanks for investigating, Kirben!
svn-id: r12598
-rw-r--r-- | queen/musicdata.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/queen/musicdata.cpp b/queen/musicdata.cpp index e63877e90d..e767474cf0 100644 --- a/queen/musicdata.cpp +++ b/queen/musicdata.cpp @@ -974,8 +974,11 @@ const tuneData Sound::_tune[] = { { { 67, 177, 0 }, { 0, 0 }, 2, 0 }, /* 40 - Airport */ - { { 81, 0 }, { 0, 0 }, 1, 0 }, - + //{ { 81, 0 }, { 0, 0 }, 1, 0 }, //This is the value from the original sources + //However it points to invalid music (atleast for + //Roland music data)...how odd. + { { 83, 0 }, { 0, 0 }, 1, 0 }, + /* 41 - Plane Leaves */ { { 68, 1198, 0 }, { 0, 0 }, 2, 0 }, |