PSX: adjust core name.

This commit is contained in:
Sorgelig
2021-12-19 14:34:57 +08:00
parent 24d13f4d03
commit db5fb8ed8c

View File

@@ -264,7 +264,7 @@ char is_c64()
static int is_psx_type = 0;
char is_psx()
{
if (!is_psx_type) is_psx_type = strcasecmp(core_name, "PlayStation") ? 2 : 1;
if (!is_psx_type) is_psx_type = strcasecmp(core_name, "PSX") ? 2 : 1;
return (is_psx_type == 1);
}