summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/resources/monsterinfo.cpp2
-rw-r--r--src/resources/monsterinfo.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/monsterinfo.cpp b/src/resources/monsterinfo.cpp
index e60fb4e2..b71d50d1 100644
--- a/src/resources/monsterinfo.cpp
+++ b/src/resources/monsterinfo.cpp
@@ -53,7 +53,7 @@ MonsterInfo::addSFX (SoundEvent event, std::string filename)
std::string
-MonsterInfo::getSFX (SoundEvent event)
+MonsterInfo::getSound (SoundEvent event)
{
std::map<SoundEvent, std::vector<std::string>* >::iterator i = mSounds.find(event);
diff --git a/src/resources/monsterinfo.h b/src/resources/monsterinfo.h
index 8129338a..25aaf12c 100644
--- a/src/resources/monsterinfo.h
+++ b/src/resources/monsterinfo.h
@@ -61,7 +61,7 @@ class MonsterInfo
getSprite () const { return mSprite; };
std::string
- getSFX (SoundEvent event);
+ getSound (SoundEvent event);
private: