فهرست منبع

Fix array-bounds warning in BVH

Provides a workaround to prevent tripping a compiler warning.
lawnjelly 3 سال پیش
والد
کامیت
91d252c697
1فایلهای تغییر یافته به همراه4 افزوده شده و 0 حذف شده
  1. 4 0
      core/math/bvh_structs.inc

+ 4 - 0
core/math/bvh_structs.inc

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