diff options
author | Max Horn | 2003-10-03 13:49:06 +0000 |
---|---|---|
committer | Max Horn | 2003-10-03 13:49:06 +0000 |
commit | a6cb5aa76b360abbe899c27a2bee81ab96c2e96e (patch) | |
tree | e255757ebcfc95c406e9bbd0986b2590b8abe5cc | |
parent | 3ead57623e5e5dea1faf5556d6526b40ece3199d (diff) | |
download | scummvm-rg350-a6cb5aa76b360abbe899c27a2bee81ab96c2e96e.tar.gz scummvm-rg350-a6cb5aa76b360abbe899c27a2bee81ab96c2e96e.tar.bz2 scummvm-rg350-a6cb5aa76b360abbe899c27a2bee81ab96c2e96e.zip |
fix another doxygen warning
svn-id: r10568
-rw-r--r-- | scumm/music.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scumm/music.h b/scumm/music.h index 3d08104889..226c499fec 100644 --- a/scumm/music.h +++ b/scumm/music.h @@ -42,19 +42,19 @@ public: /** * Set the output volume. - * @param the new output volume + * @param vol the new output volume */ virtual void setMasterVolume(int vol) = 0; /** * Start playing the sound with the given id. - * @param sound the sound to start + * @param sound the sound to start */ virtual void startSound(int sound) = 0; /** * Stop playing the sound with the given id. - * @param sound the sound to stop + * @param sound the sound to stop */ virtual void stopSound(int sound) = 0; @@ -66,7 +66,7 @@ public: /** * Query the status of the sound with the given id. Usually this is just * a boolean telling us whether the sound is playing or not. - * @param sound the sound to for which we want the status + * @param sound the sound to for which we want the status * @return the status of the specified sound */ virtual int getSoundStatus(int sound) const = 0; |