diff options
-rw-r--r-- | engines/groovie/music.cpp | 4 | ||||
-rw-r--r-- | sound/softsynth/adlib.cpp | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/engines/groovie/music.cpp b/engines/groovie/music.cpp index 0566b611d5..1532d10779 100644 --- a/engines/groovie/music.cpp +++ b/engines/groovie/music.cpp @@ -558,8 +558,8 @@ void MusicPlayerXMI::setTimbreAD(byte channel, const Timbre &timbre) { // Prepare the AdLib Instrument array from the GTL entry // - // struct AdlibInstrument used by our AdLib MIDI synth is 30 bytes, - // since we pass data + 2 for non precussion instruments we need to + // struct AdlibInstrument used by our AdLib MIDI synth is 30 bytes. + // Since we pass data + 2 for non percussion instruments we need to // have a buffer of size 32, so there are no invalid memory reads, // when setting up an AdLib instrument. byte data[32]; diff --git a/sound/softsynth/adlib.cpp b/sound/softsynth/adlib.cpp index 8d7e8273de..9d4ac1e0c0 100644 --- a/sound/softsynth/adlib.cpp +++ b/sound/softsynth/adlib.cpp @@ -41,8 +41,8 @@ struct AdlibVoice; // example of this. // // It might be very well possible, that none of the compilers we support -// add any padding bytes at all, since all used variables are only of the -// type 'byte'. But better safe than sorry. +// add any padding bytes at all, since the structs contain only variables +// of the type 'byte'. But better safe than sorry. #include "common/pack-start.h" struct InstrumentExtra { byte a, b, c, d, e, f, g, h; |