diff options
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/sound/drivers/adlib.cpp | 4 | ||||
-rw-r--r-- | engines/sci/sound/iterator/iterator.cpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/sound/drivers/adlib.cpp b/engines/sci/sound/drivers/adlib.cpp index 76e615dce0..bfcb114327 100644 --- a/engines/sci/sound/drivers/adlib.cpp +++ b/engines/sci/sound/drivers/adlib.cpp @@ -311,7 +311,7 @@ void MidiDriver_AdLib::send(uint32 b) { case 0xc0: _channels[channel].patch = op1; break; - // The original adlib driver from sierra ignores aftertouch completely, so should we + // The original AdLib driver from sierra ignores aftertouch completely, so should we case 0xa0: // Polyphonic key pressure (aftertouch) case 0xd0: // Channel pressure (aftertouch) break; @@ -790,7 +790,7 @@ int MidiPlayer_AdLib::open(ResourceManager *resMan) { if (res) { ok = static_cast<MidiDriver_AdLib *>(_driver)->loadResource(res->data, res->size); } else { - // Early SCI0 games have the sound bank embedded in the adlib driver + // Early SCI0 games have the sound bank embedded in the AdLib driver Common::File f; diff --git a/engines/sci/sound/iterator/iterator.cpp b/engines/sci/sound/iterator/iterator.cpp index d4e79590ca..b1adb55896 100644 --- a/engines/sci/sound/iterator/iterator.cpp +++ b/engines/sci/sound/iterator/iterator.cpp @@ -340,7 +340,7 @@ int BaseSongIterator::parseMidiCommand(byte *buf, int *result, SongIteratorChann } case 0x04: /* UNKNOWN NYI (happens in LSL2 gameshow) */ case 0x46: /* UNKNOWN NYI (happens in LSL3 binoculars) */ - case 0x61: /* UNKNOWN NYI (special for adlib? Iceman) */ + case 0x61: /* UNKNOWN NYI (special for AdLib? Iceman) */ case 0x73: /* UNKNOWN NYI (happens in Hoyle) */ case 0xd1: /* UNKNOWN NYI (happens in KQ4 when riding the unicorn) */ return /* Execute next command */ |