X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=frontend%2Flibretro.c;h=59f1201509e764822c59b5ba5510880cbf9712fd;hb=c2d67cd94f604bbf4fc8aaf3a5da3275d1b733a6;hp=91721af36f0f81665b07ded4da4e921fbe99c178;hpb=6a3c7538f6167cfc9025d7157c1f8555edc2d51e;p=pcsx_rearmed.git 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) {