From 138b161a28538ed55f1d2b721670095236bec411 Mon Sep 17 00:00:00 2001 From: bslenul Date: Mon, 15 Feb 2021 10:44:33 +0100 Subject: Change HLE BIOS message. --- frontend/libretro.c | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/frontend/libretro.c b/frontend/libretro.c index 91721af..59f1201 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) { -- cgit v1.2.3