From 84808d2e358e08b4da78363a38abb37ad96fc835 Mon Sep 17 00:00:00 2001 From: Michael Maltese Date: Thu, 15 Jun 2017 17:09:17 -0700 Subject: [PATCH] DSPCore: update free DSP ROM message for GBA ucode support The GBA ucode is supported as of #5524 / d51be94. --- Source/Core/Core/DSP/DSPCore.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/Core/Core/DSP/DSPCore.cpp b/Source/Core/Core/DSP/DSPCore.cpp index a4ae8254f6..0d06a26661 100644 --- a/Source/Core/Core/DSP/DSPCore.cpp +++ b/Source/Core/Core/DSP/DSPCore.cpp @@ -88,6 +88,12 @@ static bool VerifyRoms() Host::OSD_AddMessage("All Wii games will work correctly, and most GC games should ", 8000); Host::OSD_AddMessage("also work fine, but the GBA/IPL/CARD UCodes will not work.", 8000); } + else if (rom_idx == 4) + { + Host::OSD_AddMessage("You are using a free DSP ROM made by the Dolphin Team.", 8000); + Host::OSD_AddMessage("All Wii games will work correctly, and most GC games should ", 8000); + Host::OSD_AddMessage("also work fine, but the IPL and CARD UCodes will not work.", 8000); + } return true; }