From 6d6599189b49021a4a39ad1451e19d06d608f8c4 Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Tue, 10 Oct 2023 13:46:33 +0200 Subject: [PATCH] Rename STARTLOGO to BOOTLOGO --- src/common/startscreen/startscreen_generic.cpp | 2 +- .../static/graphics/{startlogo.png => bootlogo.png} | Bin 2 files changed, 1 insertion(+), 1 deletion(-) rename wadsrc/static/graphics/{startlogo.png => bootlogo.png} (100%) diff --git a/src/common/startscreen/startscreen_generic.cpp b/src/common/startscreen/startscreen_generic.cpp index 2c7abbd79..4a8051aa4 100644 --- a/src/common/startscreen/startscreen_generic.cpp +++ b/src/common/startscreen/startscreen_generic.cpp @@ -72,7 +72,7 @@ FGenericStartScreen::FGenericStartScreen(int max_progress) : FStartScreen(max_progress) { // at this point we do not have a working texture manager yet, so we have to do the lookup via the file system - int startup_lump = fileSystem.CheckNumForName("STARTLOGO", ns_graphics); + int startup_lump = fileSystem.CheckNumForName("BOOTLOGO", ns_graphics); StartupBitmap.Create(640 * 2, 480 * 2); ClearBlock(StartupBitmap, { 0, 0, 0, 255 }, 0, 0, 640 * 2, 480 * 2); diff --git a/wadsrc/static/graphics/startlogo.png b/wadsrc/static/graphics/bootlogo.png similarity index 100% rename from wadsrc/static/graphics/startlogo.png rename to wadsrc/static/graphics/bootlogo.png