From 6ae23f6a2de6ec82cbb7c18dd64e952c62ef7bc0 Mon Sep 17 00:00:00 2001 From: Cody Winchester Date: Sat, 27 Sep 2025 11:15:54 -0500 Subject: [PATCH] GOOENGINE: Remove splash alt for 4.2 We dont have an alt version of the splash screen this release --- source/blender/windowmanager/intern/wm_splash_screen.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/blender/windowmanager/intern/wm_splash_screen.cc b/source/blender/windowmanager/intern/wm_splash_screen.cc index a924389f2d5..602d7838fa1 100644 --- a/source/blender/windowmanager/intern/wm_splash_screen.cc +++ b/source/blender/windowmanager/intern/wm_splash_screen.cc @@ -155,11 +155,6 @@ static ImBuf *wm_block_splash_image(int width, int *r_height) const uchar *splash_data = (const uchar *)datatoc_splash_png; size_t splash_data_size = datatoc_splash_png_size; - if (sum > 380) { - splash_data = (const uchar *)datatoc_splash_alt_png; - splash_data_size = datatoc_splash_alt_png_size; - } - ibuf = IMB_ibImageFromMemory( splash_data, splash_data_size, IB_rect, nullptr, ""); }