diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-03-16 14:28:45 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-03-16 14:28:45 +0200 |
commit | 59dc0bffc0f754de8daed29bce3a48e90ea6b4fb (patch) | |
tree | 7cd423679a60e25b29318d7a87f367729f8d5fdf /src/resources/soundeffect.h | |
parent | fbf665912933d10d9132b17802949149d9094fdd (diff) | |
download | plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.gz plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.bz2 plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.tar.xz plus-59dc0bffc0f754de8daed29bce3a48e90ea6b4fb.zip |
Add checks and fix some code style.
Diffstat (limited to 'src/resources/soundeffect.h')
-rw-r--r-- | src/resources/soundeffect.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h index f9fa0796f..6e208479d 100644 --- a/src/resources/soundeffect.h +++ b/src/resources/soundeffect.h @@ -68,7 +68,8 @@ class SoundEffect : public Resource /** * Constructor. */ - SoundEffect(Mix_Chunk *soundEffect): mChunk(soundEffect) {} + SoundEffect(Mix_Chunk *soundEffect): mChunk(soundEffect) + { } Mix_Chunk *mChunk; }; |