diff options
| author | Norbert Lange | 2009-06-15 17:09:59 +0000 |
|---|---|---|
| committer | Norbert Lange | 2009-06-15 17:09:59 +0000 |
| commit | c8d05aca48ca4af8f042d0442f20320201c81f92 (patch) | |
| tree | af76d144a29b3e88ceb700ffe63aeff9b9e67e0c | |
| parent | 6720928cb6933c1f75573fe401741016a807e894 (diff) | |
| download | scummvm-rg350-c8d05aca48ca4af8f042d0442f20320201c81f92.tar.gz scummvm-rg350-c8d05aca48ca4af8f042d0442f20320201c81f92.tar.bz2 scummvm-rg350-c8d05aca48ca4af8f042d0442f20320201c81f92.zip | |
My last commit fired an assert on some songs, fixed!
svn-id: r41551
| -rw-r--r-- | sound/mods/tfmx.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/mods/tfmx.cpp b/sound/mods/tfmx.cpp index a5a0dde624..a43e330908 100644 --- a/sound/mods/tfmx.cpp +++ b/sound/mods/tfmx.cpp @@ -469,9 +469,6 @@ doTrackstep: for (int i = 0; i < kNumChannels; ++i) { const uint8 pattCmd = _patternCtx[i].command; if (pattCmd < 0x90) { // execute Patternstep - // FIXME: 0x90 is very likely a bug, 0x80 would make more sense - assert(pattCmd < 0x80); - ++runningPatterns; if (_patternCtx[i].wait == 0) { // issue all Steps for this tick |
