summaryrefslogtreecommitdiff
path: root/libpcsxcore/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'libpcsxcore/misc.c')
-rw-r--r--libpcsxcore/misc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpcsxcore/misc.c b/libpcsxcore/misc.c
index 35b9bd7a..def43ee8 100644
--- a/libpcsxcore/misc.c
+++ b/libpcsxcore/misc.c
@@ -331,8 +331,7 @@ int CheckCdrom() {
}
if (Config.PsxAuto) { // autodetect system (pal or ntsc)
- if( (CdromId[2] == 'e' && CdromId[3] == 's') ||
- (CdromId[2] == 'E' && CdromId[3] == 'S') )
+ if( CdromId[2] == 'e' || CdromId[2] == 'E' )
Config.PsxType = PSX_TYPE_PAL; // pal
else Config.PsxType = PSX_TYPE_NTSC; // ntsc
}