diff options
author | Andrei Karas <akaras@inbox.ru> | 2010-03-08 17:45:40 +0200 |
---|---|---|
committer | Bertram <yohanndotferreiraatorange.fr> | 2010-03-08 17:12:38 +0100 |
commit | 9951bf6c1c2e3966f92f1545b60a9e23a1f32565 (patch) | |
tree | e3f9fbcb3ff252390a1af4137ddfd8694b8c77e4 /src/map.h | |
parent | 71cefdb345652342a3eaf84f197586809128e6ab (diff) | |
download | mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.gz mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.bz2 mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.tar.xz mana-9951bf6c1c2e3966f92f1545b60a9e23a1f32565.zip |
Fix properties bug.
Fix Random crushes and valgrind memory errors.
Reviewed-by: thorbjorn
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -263,8 +263,8 @@ class Map : public Properties int getTileHeight() const { return mTileHeight; } - const std::string &getMusicFile() const; - const std::string &getName() const; + const std::string getMusicFile() const; + const std::string getName() const; /** * Gives the map id based on filepath (ex: 009-1) |