Fix firmware version check logic

This commit is contained in:
earthonion
2026-02-08 00:11:37 -05:00
committed by GitHub
parent bdca1f7887
commit aa223344d9
+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