summaryrefslogtreecommitdiff
path: root/src/map.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/map.h')
-rw-r--r--src/map.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map.h b/src/map.h
index c92a3c60f..e9a9df593 100644
--- a/src/map.h
+++ b/src/map.h
@@ -96,10 +96,10 @@ struct MetaTile
class MapObject
{
public:
- MapObject(int type, std::string data)
+ MapObject(int type0, std::string data0)
{
- this->type = type;
- this->data = data;
+ type = type0;
+ data = data0;
}
int type;