Merge pull request #46909 from akien-mga/3.2-fix-noisetexture-thread
NoiseTexture: Fix regression in starting thread
This commit is contained in:
commit
db246f8edb
|
@ -162,7 +162,7 @@ void NoiseTexture::_update_texture() {
|
||||||
#endif
|
#endif
|
||||||
if (use_thread) {
|
if (use_thread) {
|
||||||
|
|
||||||
if (noise_thread.is_started()) {
|
if (!noise_thread.is_started()) {
|
||||||
noise_thread.start(_thread_function, this);
|
noise_thread.start(_thread_function, this);
|
||||||
regen_queued = false;
|
regen_queued = false;
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue