summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-02-10 23:35:30 +0100
committerIra Rice <irarice@gmail.com>2009-02-10 20:26:01 -0700
commitff1205d2b89f7f2273a32176c746f36836d7bfa9 (patch)
tree9174cd93bbc3445b027a04637f76b67948a85eab /src/resources
parentd99b00a149e7828adb3c4651069483e51b0b458b (diff)
downloadMana-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.gz
Mana-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.bz2
Mana-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.xz
Mana-ff1205d2b89f7f2273a32176c746f36836d7bfa9.zip
Use string::empty() instead of comparing to ""
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/spritedef.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/spritedef.cpp b/src/resources/spritedef.cpp
index 989741dc..d6cc8960 100644
--- a/src/resources/spritedef.cpp
+++ b/src/resources/spritedef.cpp
@@ -322,7 +322,7 @@ SpriteDef::~SpriteDef()
SpriteAction SpriteDef::makeSpriteAction(const std::string& action)
{
- if (action == "" || action == "default") {
+ if (action.empty() || action == "default") {
return ACTION_DEFAULT;
}
if (action == "stand") {
@@ -374,7 +374,7 @@ SpriteAction SpriteDef::makeSpriteAction(const std::string& action)
SpriteDirection SpriteDef::makeSpriteDirection(const std::string& direction)
{
- if (direction == "" || direction == "default") {
+ if (direction.empty() || direction == "default") {
return DIRECTION_DEFAULT;
}
else if (direction == "up") {