aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2009-09-14 19:30:46 +0000
committerJohannes Schickel2009-09-14 19:30:46 +0000
commit1b68bf76ac1c7b6276353ee36cc6fa6141aaa3ef (patch)
tree5c4b0bd455c5a268693f0b66b71522a66951a1dc
parent160f9e77055c9ba80810ef22783158d7939291b0 (diff)
downloadscummvm-rg350-1b68bf76ac1c7b6276353ee36cc6fa6141aaa3ef.tar.gz
scummvm-rg350-1b68bf76ac1c7b6276353ee36cc6fa6141aaa3ef.tar.bz2
scummvm-rg350-1b68bf76ac1c7b6276353ee36cc6fa6141aaa3ef.zip
Wording.
svn-id: r44086
-rw-r--r--engines/groovie/music.cpp4
-rw-r--r--sound/softsynth/adlib.cpp4
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;