summaryrefslogtreecommitdiff
path: root/src/sound.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-02-10 22:23:27 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2012-02-10 23:38:46 +0100
commit3b022084c6d661276b3a5f5151e2bfbf6201cb98 (patch)
tree85c4064a2c22db1267c4678ff2ebf6599e1c14e8 /src/sound.cpp
parentb89a8e3e6a2d31d886e31383a4add186f0fa3680 (diff)
downloadmana-3b022084c6d661276b3a5f5151e2bfbf6201cb98.tar.gz
mana-3b022084c6d661276b3a5f5151e2bfbf6201cb98.tar.bz2
mana-3b022084c6d661276b3a5f5151e2bfbf6201cb98.tar.xz
mana-3b022084c6d661276b3a5f5151e2bfbf6201cb98.zip
Arbitrary small code cleanups
Reviewed-by: Erik Schilling
Diffstat (limited to 'src/sound.cpp')
-rw-r--r--src/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sound.cpp b/src/sound.cpp
index 4f562833..e8348a40 100644
--- a/src/sound.cpp
+++ b/src/sound.cpp
@@ -254,7 +254,7 @@ void Sound::playSfx(const std::string &path, int x, int y)
return;
std::string tmpPath;
- if (!path.find("sfx/"))
+ if (!path.compare(0, 4, "sfx/"))
tmpPath = path;
else
tmpPath = paths.getValue("sfx", "sfx/") + path;