diff options
Diffstat (limited to 'src/maplayer.h')
-rw-r--r-- | src/maplayer.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/maplayer.h b/src/maplayer.h index 327a6baa0..c8dc08238 100644 --- a/src/maplayer.h +++ b/src/maplayer.h @@ -54,10 +54,9 @@ class MapRowVertexes class MapObject { public: - MapObject(int type0, std::string data0) + MapObject(int type0, std::string data0) : + type(type0), data(data0) { - type = type0; - data = data0; } int type; |