Fix firmware version check logic

This commit is contained in:
earthonion
2026-02-08 00:24:55 -05:00
committed by GitHub
parent ee4163c95d
commit feae6d1310
+1 -1
View File
@@ -642,7 +642,7 @@ function init () {
return amaj === bmaj ? amin - bmin : amaj - bmaj
}
if (compare_version(FW_VERSION, '9.00') >= 0 || compare_version(FW_VERSION, '13.00') <= 0) {
if (compare_version(FW_VERSION, '9.00') < 0 || compare_version(FW_VERSION, '13.00') > 0) {
log('Unsupported PS4 firmware\nSupported: 9.00-13.00\nAborting...')
send_notification('Unsupported PS4 firmware\nAborting...')
return false