diff options
author | Max Horn | 2003-09-13 11:26:51 +0000 |
---|---|---|
committer | Max Horn | 2003-09-13 11:26:51 +0000 |
commit | d6eddef542712e9b8e8d222638afec0f9f450be7 (patch) | |
tree | 4ad25b46466be384e724e745d2664586589dbafe | |
parent | adcbedbfdeb8729b0b0566af69c9654575ce6055 (diff) | |
download | scummvm-rg350-d6eddef542712e9b8e8d222638afec0f9f450be7.tar.gz scummvm-rg350-d6eddef542712e9b8e8d222638afec0f9f450be7.tar.bz2 scummvm-rg350-d6eddef542712e9b8e8d222638afec0f9f450be7.zip |
clarified Loom related comments
svn-id: r10213
-rw-r--r-- | scumm/script_v5.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index 476cf05646..f28eda1325 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1779,7 +1779,7 @@ void Scumm_v5::o5_resourceRoutines() { warning("o5_resourceRoutines %d not yet handled (script %d)", _opcode & 0x3F, vm.slot[_currentScript].number); break; case 35: - // Might be used to set CD volume + // TODO: Might be used to set CD volume in LoomCD foo = getVarOrDirectByte(0x40); warning("o5_resourceRoutines %d not yet handled (script %d)", _opcode & 0x3F, vm.slot[_currentScript].number); break; @@ -2221,7 +2221,7 @@ void Scumm_v5::o5_startMusic() { result = _sound->getCurrentCDSound(); break; case 0xFF: - // Might return current CD volume, used in Loom. + // TODO: Might return current CD volume in LoomCD. break; default: // TODO: return track length in seconds. We'll have to extend Sound and OSystem for this. |