Merge pull request #39074 from vnen/gdscript-assert-message

Fix assert message when no custom message is set
This commit is contained in:
Rémi Verschelde 2020-05-27 08:23:17 +02:00 committed by GitHub
commit ab460e7a6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1430,11 +1430,14 @@ Variant GDScriptFunction::call(GDScriptInstance *p_instance, const Variant **p_a
#ifdef DEBUG_ENABLED
GET_VARIANT_PTR(test, 1);
GET_VARIANT_PTR(message, 2);
bool result = test->booleanize();
if (!result) {
const String &message_str = *message;
String message_str;
if (_code_ptr[ip + 2] != 0) {
GET_VARIANT_PTR(message, 2);
message_str = *message;
}
if (message_str.empty()) {
err_text = "Assertion failed.";
} else {