Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Beliar83 authored Jan 21, 2019
1 parent 9978167 commit 7e2ec16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/godotconversions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ bool convert<Variant>::decode(const YAML::Node &node, Variant &variant) {
return false;
} // namespace YAML
}
if (node.Tag != "!") {
if (node.Tag() != "!") {
// Try to determine the type, first match will return, so order will matter.
if (node.IsNull()) {
variant = Variant();
Expand Down

0 comments on commit 7e2ec16

Please sign in to comment.