diff options
author | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2019-03-14 18:38:07 +0200 |
---|---|---|
committer | Bojidar Marinov <bojidar.marinov.bg@gmail.com> | 2019-03-14 18:38:07 +0200 |
commit | b64f9f03f825bd3267c71ee8392d4e8e801010d4 (patch) | |
tree | 3e827ef29d1b451e0744be58bbc4bd11095c565c /main/tests | |
parent | 775e74e0d41daa9cf3679c2e215f4ef46eee9cbc (diff) |
Fix duplicated lines in GDScript bytecode
Fixes #26789
Diffstat (limited to 'main/tests')
-rw-r--r-- | main/tests/test_gdscript.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/tests/test_gdscript.cpp b/main/tests/test_gdscript.cpp index 55e31a18c3..27180f84aa 100644 --- a/main/tests/test_gdscript.cpp +++ b/main/tests/test_gdscript.cpp @@ -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)); |