summaryrefslogtreecommitdiff
path: root/src/resources/soundeffect.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-17 22:40:29 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-17 22:40:29 +0300
commit7bd1dfced8823f59adb923170345664219545410 (patch)
tree0042b2e5359b5cab33a70033657a5fa13263e82c /src/resources/soundeffect.h
parenteeb6f3b831e707b413a10de53c7f72139e73f963 (diff)
downloadplus-7bd1dfced8823f59adb923170345664219545410.tar.gz
plus-7bd1dfced8823f59adb923170345664219545410.tar.bz2
plus-7bd1dfced8823f59adb923170345664219545410.tar.xz
plus-7bd1dfced8823f59adb923170345664219545410.zip
Remove default parameter from soundeffect.h
Diffstat (limited to 'src/resources/soundeffect.h')
-rw-r--r--src/resources/soundeffect.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h
index 2797ce00e..71f5f5f03 100644
--- a/src/resources/soundeffect.h
+++ b/src/resources/soundeffect.h
@@ -65,8 +65,9 @@ class SoundEffect final : public Resource
* @return <code>true</code> if the playback started properly
* <code>false</code> otherwise.
*/
- bool play(const int loops, const int volume,
- const int channel = -1) const;
+ bool play(const int loops,
+ const int volume,
+ const int channel) const;
int calcMemoryLocal() const override final;