Fix array-bounds warning in BVH

Provides a workaround to prevent tripping a compiler warning.

(cherry picked from commit 91d252c697)
This commit is contained in:
lawnjelly 2022-09-22 16:06:25 +01:00 committed by Haoyu Qiu
parent da3b8b324d
commit 2ef0052113

View file

@ -88,7 +88,11 @@ public:
num_items++;
return id;
}
#ifdef DEV_ENABLED
return -1;
#else
ERR_FAIL_V_MSG(0, "BVH request_item error.");
#endif
}
};