From 8a5af8183a86ef20de7027fc43cab20fb13060cc Mon Sep 17 00:00:00 2001 From: clayjohn Date: Tue, 20 Jun 2023 14:03:14 -0700 Subject: Add warnings and fallbacks for particles sub emitters when using the GL Compatibility rendering backend Co-authored-by: Hugo Locurcio --- drivers/gles3/storage/texture_storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/gles3/storage/texture_storage.cpp') diff --git a/drivers/gles3/storage/texture_storage.cpp b/drivers/gles3/storage/texture_storage.cpp index f362a21d8c..97687ba8f4 100644 --- a/drivers/gles3/storage/texture_storage.cpp +++ b/drivers/gles3/storage/texture_storage.cpp @@ -644,7 +644,7 @@ Ref TextureStorage::_get_gl_image_and_format(const Ref &p_image, I } } break; default: { - ERR_FAIL_V_MSG(Ref(), "Image Format: " + itos(p_format) + " is not supported by the OpenGL3 Renderer"); + ERR_FAIL_V_MSG(Ref(), "The image format " + itos(p_format) + " is not supported by the GL Compatibility rendering backend."); } } -- cgit v1.2.3