From 70280e9d127ffff43e8f9586bdda259bedebcace Mon Sep 17 00:00:00 2001 From: blastframe Date: Fri, 11 Oct 2024 09:41:31 +0200 Subject: [PATCH] Fix: typo in shadow error message The error message related to shadow updates in `eevee_shadow.cc` currently contains a typo: `"Error: Too many shadow updates, some shadow might be incorrect."` This sentence should use the plural form of "shadows" to correctly describe the context. Fixing this typo ensures clarity and correctness in the error message, providing developers and users with the appropriate feedback when encountering shadow update issues. Pull Request: https://projects.blender.org/blender/blender/pulls/128865 --- source/blender/draw/engines/eevee_next/eevee_shadow.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/draw/engines/eevee_next/eevee_shadow.cc b/source/blender/draw/engines/eevee_next/eevee_shadow.cc index fa6135a3c54..2045ba441eb 100644 --- a/source/blender/draw/engines/eevee_next/eevee_shadow.cc +++ b/source/blender/draw/engines/eevee_next/eevee_shadow.cc @@ -652,7 +652,7 @@ void ShadowModule::init() shadow_page_len_); } if (stats.view_needed_count > SHADOW_VIEW_MAX && enabled_) { - inst_.info_append_i18n("Error: Too many shadow updates, some shadow might be incorrect."); + inst_.info_append_i18n("Error: Too many shadow updates, some shadows might be incorrect."); } }