diff options
Diffstat (limited to 'core/io/json.cpp')
-rw-r--r-- | core/io/json.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/core/io/json.cpp b/core/io/json.cpp index e73677be9c..989b292cbd 100644 --- a/core/io/json.cpp +++ b/core/io/json.cpp @@ -2,9 +2,11 @@ /* json.cpp */ /**************************************************************************/ /* This file is part of: */ -/* GODOT ENGINE */ -/* https://godotengine.org */ +/* REDOT ENGINE */ +/* https://redotengine.org */ /**************************************************************************/ +/* Copyright (c) 2024-present Redot Engine contributors */ +/* (see REDOT_AUTHORS.md) */ /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */ /* */ @@ -1022,7 +1024,7 @@ Variant JSON::to_native(const Variant &p_json, bool p_allow_classes, bool p_allo case Variant::DICTIONARY: { Dictionary d = p_json; if (d.has(GDTYPE)) { - // Specific Godot Variant types serialized to JSON. + // Specific Redot Variant types serialized to JSON. String type = d[GDTYPE]; if (type == Variant::get_type_name(Variant::VECTOR2)) { ERR_FAIL_COND_V(!d.has(VALUES), Variant()); |