summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/resources/soundeffect.cpp7
-rw-r--r--src/resources/soundeffect.h2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/resources/soundeffect.cpp b/src/resources/soundeffect.cpp
index a797a9db1..7f43e2e44 100644
--- a/src/resources/soundeffect.cpp
+++ b/src/resources/soundeffect.cpp
@@ -56,3 +56,10 @@ bool SoundEffect::play(const int loops, const int volume,
return Mix_PlayChannel(channel, mChunk, loops) != -1;
}
+
+int SoundEffect::calcMemoryLocal()
+{
+ return sizeof(SoundEffect) +
+ sizeof(SDL_AudioSpec) +
+ Resource::calcMemoryLocal();
+}
diff --git a/src/resources/soundeffect.h b/src/resources/soundeffect.h
index 3fd0f4094..2eed8fbfd 100644
--- a/src/resources/soundeffect.h
+++ b/src/resources/soundeffect.h
@@ -65,6 +65,8 @@ class SoundEffect final : public Resource
bool play(const int loops, const int volume,
const int channel = -1) const;
+ int calcMemoryLocal() override final;
+
protected:
/**
* Constructor.