Browse Source

Remove logs

Daniele Bartolini 11 năm trước cách đây
mục cha
commit
6509f299dc
1 tập tin đã thay đổi với 0 bổ sung2 xóa
  1. 0 2
      engine/world/World.cpp

+ 0 - 2
engine/world/World.cpp

@@ -289,12 +289,10 @@ void World::destroy_debug_line(DebugLine* line)
 //-----------------------------------------------------------------------------
 void World::load_level(const char* name)
 {
-	Log::d("Loading level...");
 	const LevelResource* res = (LevelResource*) device()->resource_manager()->lookup(LEVEL_EXTENSION, name);
 
 	for (uint32_t i = 0; i < res->num_units(); i++)
 	{
-		Log::d("Loading ...");
 		const LevelUnit* lu = res->get_unit(i);
 		spawn_unit(lu->name, lu->position, lu->rotation);
 	}