mirror of
				https://github.com/vcmi/vcmi.git
				synced 2025-10-31 00:07:39 +02:00 
			
		
		
		
	Fix header.mapLevels saving
This commit is contained in:
		| @@ -267,7 +267,7 @@ void CMapSaverJson::saveHeader() | ||||
| 	header["versionMinor"].Float() = VERSION_MINOR;	 | ||||
| 	 | ||||
| 	//todo: multilevel map save support	 | ||||
| 	JsonNode levels = header["mapLevels"]; | ||||
| 	JsonNode & levels = header["mapLevels"]; | ||||
| 	levels["surface"]["height"].Float() = map->height;	 | ||||
| 	levels["surface"]["width"].Float() = map->width; | ||||
| 	levels["surface"]["index"].Float() = 0; | ||||
|   | ||||
| @@ -60,22 +60,22 @@ void MapComparer::compareHeader() | ||||
| 	VCMI_REQUIRE_FIELD_EQUAL(width); | ||||
| 	VCMI_REQUIRE_FIELD_EQUAL(twoLevel); | ||||
|  | ||||
| 	BOOST_FAIL("Not implemented"); | ||||
| 	BOOST_ERROR("Not implemented"); | ||||
| } | ||||
|  | ||||
| void MapComparer::compareOptions() | ||||
| { | ||||
| 	BOOST_FAIL("Not implemented"); | ||||
| 	BOOST_ERROR("Not implemented"); | ||||
| } | ||||
|  | ||||
| void MapComparer::compareObjects() | ||||
| { | ||||
| 	BOOST_FAIL("Not implemented"); | ||||
| 	BOOST_ERROR("Not implemented"); | ||||
| } | ||||
|  | ||||
| void MapComparer::compareTerrain() | ||||
| { | ||||
| 	BOOST_FAIL("Not implemented"); | ||||
| 	BOOST_ERROR("Not implemented"); | ||||
| } | ||||
|  | ||||
| void MapComparer::compare() | ||||
|   | ||||
		Reference in New Issue
	
	Block a user