diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2009-02-10 23:35:30 +0100 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-02-10 20:26:01 -0700 |
commit | ff1205d2b89f7f2273a32176c746f36836d7bfa9 (patch) | |
tree | 9174cd93bbc3445b027a04637f76b67948a85eab /src/resources | |
parent | d99b00a149e7828adb3c4651069483e51b0b458b (diff) | |
download | mana-client-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.gz mana-client-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.bz2 mana-client-ff1205d2b89f7f2273a32176c746f36836d7bfa9.tar.xz mana-client-ff1205d2b89f7f2273a32176c746f36836d7bfa9.zip |
Use string::empty() instead of comparing to ""
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/spritedef.cpp | 4 |
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") { |