diff options
| author | SushiTee <weichel.sascha@xxx.xx> | 2011-07-12 03:14:46 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-07-15 00:47:52 +0200 |
| commit | d78c0d66e5108f0316f3bcac2a2119aa3a680ff9 (patch) | |
| tree | c5527f5d756bbb0ff6dc901828e49ad9535b204f /src/game/editor/layer_tiles.cpp | |
| parent | a3fec2f9f384f82ec631bbfc43bce456b20a2e0e (diff) | |
| download | zcatch-d78c0d66e5108f0316f3bcac2a2119aa3a680ff9.tar.gz zcatch-d78c0d66e5108f0316f3bcac2a2119aa3a680ff9.zip | |
ability to name groups and layers
Diffstat (limited to 'src/game/editor/layer_tiles.cpp')
| -rw-r--r-- | src/game/editor/layer_tiles.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/editor/layer_tiles.cpp b/src/game/editor/layer_tiles.cpp index 81944636..ebaa640a 100644 --- a/src/game/editor/layer_tiles.cpp +++ b/src/game/editor/layer_tiles.cpp @@ -15,7 +15,7 @@ CLayerTiles::CLayerTiles(int w, int h) { m_Type = LAYERTYPE_TILES; - m_pTypeName = "Tiles"; + str_copy(m_aName, "Tiles", sizeof(m_aName)); m_Width = w; m_Height = h; m_Image = -1; |