1
0
mirror of https://github.com/godotengine/godot.git synced 2025-12-04 17:04:49 +00:00

Fix duplicated lines in GDScript bytecode

Fixes #26789
This commit is contained in:
Bojidar Marinov
2019-03-14 18:38:07 +02:00
parent 775e74e0d4
commit b64f9f03f8
3 changed files with 4 additions and 7 deletions

View File

@@ -563,7 +563,7 @@ static void _disassemble_class(const Ref<GDScript> &p_class, const Vector<String
case GDScriptFunction::OPCODE_OPERATOR: {
int op = code[ip + 1];
txt += "op ";
txt += " op ";
String opname = Variant::get_operator_name(Variant::Operator(op));