summaryrefslogtreecommitdiffstats
path: root/modules/opensimplex
diff options
context:
space:
mode:
authorHaoyu Qiu <timothyqiu32@gmail.com>2021-06-14 12:29:41 +0800
committerHaoyu Qiu <timothyqiu32@gmail.com>2021-06-14 12:32:19 +0800
commit37db8d61845f1bf22d50939268aa8baa2663d06b (patch)
tree2ea1b82bb6f927d4fd01a006a70f27b6f971a092 /modules/opensimplex
parent12e0f10c74e9619262f1edcfdc1840432ada0565 (diff)
downloadredot-engine-37db8d61845f1bf22d50939268aa8baa2663d06b.tar.gz
Fix crash when freeing GradientTexture and NoiseTexture
Diffstat (limited to 'modules/opensimplex')
-rw-r--r--modules/opensimplex/noise_texture.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/opensimplex/noise_texture.cpp b/modules/opensimplex/noise_texture.cpp
index 9e0155da94..66c52ffbf9 100644
--- a/modules/opensimplex/noise_texture.cpp
+++ b/modules/opensimplex/noise_texture.cpp
@@ -187,6 +187,7 @@ Ref<OpenSimplexNoise> NoiseTexture::get_noise() {
}
void NoiseTexture::set_width(int p_width) {
+ ERR_FAIL_COND(p_width <= 0);
if (p_width == size.x) {
return;
}
@@ -195,6 +196,7 @@ void NoiseTexture::set_width(int p_width) {
}
void NoiseTexture::set_height(int p_height) {
+ ERR_FAIL_COND(p_height <= 0);
if (p_height == size.y) {
return;
}