mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-08 19:00:57 +00:00
HPL1: fix possible use of uninitialised variable
This commit is contained in:
parent
53c28a1686
commit
2080b8b502
@ -317,7 +317,7 @@ typedef tColladaNodeList::iterator tColladaNodeListIt;
|
||||
|
||||
class cColladaNode {
|
||||
public:
|
||||
cColladaNode() : mlCount(0), pParent(NULL), mvScale(1, 1, 1) {}
|
||||
cColladaNode() : mlCount(0), pParent(NULL), mvScale(1, 1, 1), mbSourceIsFile(false) {}
|
||||
|
||||
tString msId;
|
||||
tString msName;
|
||||
|
Loading…
Reference in New Issue
Block a user