Pause music when pressing ESC during a level and resume it when exiting the pause...
[supertux.git] / src / supertux / tile_set.cpp
index 42a48ec..f7450ec 100644 (file)
 
 TileSet::TileSet() :
   tiles(),
-  tiles_path(), 
   tiles_loaded(false)
 {
   tiles.resize(1, 0);
-  tiles[0] = new Tile(*this);
+  tiles[0] = new Tile();
 }
 
 TileSet::TileSet(const std::string& filename) :
   tiles(),
-  tiles_path(), 
   tiles_loaded(true)
 {
   TileSetParser parser(*this, filename);