From df8284c5f8bb7cd55f650e77c1820e24b508b3d3 Mon Sep 17 00:00:00 2001 From: "Daniel R." <47796739+polybiusproxy@users.noreply.github.com> Date: Fri, 22 Nov 2024 21:20:47 +0100 Subject: [PATCH] Fix splashes using the wrong image Supposedly, only pic1.png is used for the splash --- src/emulator.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/emulator.cpp b/src/emulator.cpp index 24f5907a1..c0b01229a 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -162,8 +162,7 @@ void Emulator::Run(const std::filesystem::path& file) { if (!playgo->Open(filepath)) { LOG_ERROR(Loader, "PlayGo: unable to open file"); } - } else if (entry.path().filename() == "pic0.png" || - entry.path().filename() == "pic1.png") { + } else if (entry.path().filename() == "pic1.png") { auto* splash = Common::Singleton::Instance(); if (splash->IsLoaded()) { continue;