From db5fb8ed8caf5e5e79eca2b72ec67f2faab6883f Mon Sep 17 00:00:00 2001 From: Sorgelig Date: Sun, 19 Dec 2021 14:34:57 +0800 Subject: [PATCH] PSX: adjust core name. --- user_io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_io.cpp b/user_io.cpp index ef306bd..8ec9b5e 100644 --- a/user_io.cpp +++ b/user_io.cpp @@ -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); }