mirror of
https://github.com/vcmi/vcmi.git
synced 2025-11-25 22:42:04 +02:00
- Fixed some warnings from cppcheck
- Minor improvements to JSON validation - Cleanup in SDL_Extensions.cpp - Implemented new propery for creature format: idle animation duration - Disabled idle animation of some of conflux creatures (was clearly broken)
This commit is contained in:
@@ -50,9 +50,9 @@ JsonNode::JsonNode(ResourceID && fileURI):
|
||||
}
|
||||
|
||||
JsonNode::JsonNode(const JsonNode ©):
|
||||
type(DATA_NULL)
|
||||
type(DATA_NULL),
|
||||
meta(copy.meta)
|
||||
{
|
||||
meta = copy.meta;
|
||||
setType(copy.getType());
|
||||
switch(type)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user