aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2008-05-09 13:33:31 +0000
committerJohannes Schickel2008-05-09 13:33:31 +0000
commita83d79bafd5b4e15d4e4fbfbed35ab2ea878dc12 (patch)
tree1eedaf69a79e8b4f03b60053eef83fb247610fae /engines
parent601f0efdd48139657096b5262c482c1bfc4bd470 (diff)
downloadscummvm-rg350-a83d79bafd5b4e15d4e4fbfbed35ab2ea878dc12.tar.gz
scummvm-rg350-a83d79bafd5b4e15d4e4fbfbed35ab2ea878dc12.tar.bz2
scummvm-rg350-a83d79bafd5b4e15d4e4fbfbed35ab2ea878dc12.zip
Fixed typos.
svn-id: r31965
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/sound.h16
-rw-r--r--engines/kyra/sound_adlib.cpp2
2 files changed, 9 insertions, 9 deletions
diff --git a/engines/kyra/sound.h b/engines/kyra/sound.h
index 4efe6779bd..58681d45ef 100644
--- a/engines/kyra/sound.h
+++ b/engines/kyra/sound.h
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
- * LPGL License
+ * LGPL License
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
@@ -61,7 +61,7 @@ namespace Kyra {
/**
* Analog audio output device API for Kyrandia games.
- * It countains functionallity to play music tracks,
+ * It contains functionality to play music tracks,
* sound effects and voices.
*/
class Sound {
@@ -92,7 +92,7 @@ public:
virtual void process() {}
/**
- * Updates internal volume settings according to ConfigManager
+ * Updates internal volume settings according to ConfigManager.
*/
virtual void updateVolumeSettings() {}
@@ -105,7 +105,7 @@ public:
virtual void setSoundList(const AudioDataStruct *list) { _soundDataList = list; }
/**
- * Checks if a given sound file is present
+ * Checks if a given sound file is present.
*
* @param track track number
* @return true if available, false otherwise
@@ -126,19 +126,19 @@ public:
virtual void playTrack(uint8 track) = 0;
/**
- * Stop playback of the current track
+ * Stop playback of the current track.
*/
virtual void haltTrack() = 0;
/**
- * Plays the specified sound effect
+ * Plays the specified sound effect.
*
* @param track sound effect id
*/
virtual void playSoundEffect(uint8 track) = 0;
/**
- * Checks if the sound driver plays any sound
+ * Checks if the sound driver plays any sound.
*
* @return true if playing, false otherwise
*/
@@ -535,7 +535,7 @@ public:
void stopSound(int channel);
/**
- * Stops playback of all sounds
+ * Stops playback of all sounds.
*/
void stopAllSounds();
diff --git a/engines/kyra/sound_adlib.cpp b/engines/kyra/sound_adlib.cpp
index b744579c98..e227d1fc46 100644
--- a/engines/kyra/sound_adlib.cpp
+++ b/engines/kyra/sound_adlib.cpp
@@ -18,7 +18,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
- * LPGL License
+ * LGPL License
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public