From: bslenul <33353403+bslenul@users.noreply.github.com> Date: Mon, 15 Feb 2021 09:44:33 +0000 (+0100) Subject: Change HLE BIOS message. X-Git-Tag: r24l~592^2 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;ds=sidebyside;h=138b161a28538ed55f1d2b721670095236bec411;p=pcsx_rearmed.git Change HLE BIOS message. --- diff --git a/frontend/libretro.c b/frontend/libretro.c index 91721af3..59f12015 100644 --- a/frontend/libretro.c +++ b/frontend/libretro.c @@ -2725,11 +2725,19 @@ static void loadPSXBios(void) } } - if (useHLE || !found_bios) + if (!found_bios) { - const char *msg_str = "No PlayStation BIOS file found - add for better compatibility"; - - SysPrintf("no BIOS files found.\n"); + const char *msg_str; + if (useHLE) + { + msg_str = "BIOS set to \'hle\' in core options - real BIOS will be ignored"; + SysPrintf("Using HLE BIOS.\n"); + } + else + { + msg_str = "No PlayStation BIOS file found - add for better compatibility"; + SysPrintf("No BIOS files found.\n"); + } if (msg_interface_version >= 1) {