From 6572d5128856b2ec55a2c417c92e584899f4906f Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Thu, 1 May 2014 11:34:10 -0300 Subject: -Fixes to OpenSSL compilation (more) -Fix bug in GDScript, now static functions can call static functions. --- bin/tests/test_gdscript.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'bin/tests') diff --git a/bin/tests/test_gdscript.cpp b/bin/tests/test_gdscript.cpp index 9670e6af6e..b62deee2cd 100644 --- a/bin/tests/test_gdscript.cpp +++ b/bin/tests/test_gdscript.cpp @@ -442,6 +442,9 @@ static String _disassemble_addr(const Ref& p_script,const GDFunction& case GDFunction::ADDR_TYPE_SELF: { return "self"; } break; + case GDFunction::ADDR_TYPE_CLASS: { + return "class"; + } break; case GDFunction::ADDR_TYPE_MEMBER: { return "member("+p_script->debug_get_member_by_index(addr)+")"; -- cgit v1.2.3