diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-05-01 10:44:08 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-05-01 10:44:08 -0300 |
commit | 4804462ee06c1b3e2d1b50b857ce8693d3c0936d (patch) | |
tree | 5d1d06399c5ce28f27253943f35ef4a11d3ac633 /tools/collada/collada.cpp | |
parent | af42e244e0c41c92b6eeab379f7ba68869dbd0a9 (diff) | |
download | redot-engine-4804462ee06c1b3e2d1b50b857ce8693d3c0936d.tar.gz |
-Fixes from source code analyzizer, closes #1768
Diffstat (limited to 'tools/collada/collada.cpp')
-rw-r--r-- | tools/collada/collada.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/collada/collada.cpp b/tools/collada/collada.cpp index 11ea9004d6..b7ec5c9d04 100644 --- a/tools/collada/collada.cpp +++ b/tools/collada/collada.cpp @@ -979,7 +979,7 @@ void Collada::_parse_curve_geometry(XMLParser& parser,String p_id,String p_name) current_source=id; COLLADA_PRINT("source data: "+id); - } else if (section=="float_array" || section=="array" || section=="float_array") { + } else if (section=="float_array" || section=="array") { // create a new array and read it. if (curvedata.sources.has(current_source)) { |