From e2ef9939706e644abf6abf5e3ca22503e6359ee5 Mon Sep 17 00:00:00 2001
From: Li
Date: Tue, 10 May 2022 20:25:00 +1200
Subject: [PATCH 1/3] Fix on 3.74.
i am doing this right .. right?
---
src/finalhe.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/finalhe.cc b/src/finalhe.cc
index 62afdc5..fc93baf 100644
--- a/src/finalhe.cc
+++ b/src/finalhe.cc
@@ -258,7 +258,7 @@ void FinalHE::enableStart() {
pkg->setCoreType(ECoreType::Memecore);
else if (vita->getDeviceVersion() <= "3.68")
pkg->setCoreType(ECoreType::HEncore);
- else if (vita->getDeviceVersion() <= "3.73")
+ else if (vita->getDeviceVersion() >= "3.73")
pkg->setCoreType(ECoreType::HEncore2);
ui.textPkg->setText(tr("Click button to START!"));
ui.btnStart->setEnabled(true);
From 280127eb65b4e51f39286982e8aac5fee463174f Mon Sep 17 00:00:00 2001
From: Li
Date: Tue, 10 May 2022 20:54:15 +1200
Subject: [PATCH 2/3] Update finalhe.cc
---
src/finalhe.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/finalhe.cc b/src/finalhe.cc
index fc93baf..5a0fc5b 100644
--- a/src/finalhe.cc
+++ b/src/finalhe.cc
@@ -258,7 +258,7 @@ void FinalHE::enableStart() {
pkg->setCoreType(ECoreType::Memecore);
else if (vita->getDeviceVersion() <= "3.68")
pkg->setCoreType(ECoreType::HEncore);
- else if (vita->getDeviceVersion() >= "3.73")
+ else if (vita->getDeviceVersion() <= "3.74")
pkg->setCoreType(ECoreType::HEncore2);
ui.textPkg->setText(tr("Click button to START!"));
ui.btnStart->setEnabled(true);
From 17bc84b04375881c9bac926ee851099f6c3561a9 Mon Sep 17 00:00:00 2001
From: Li
Date: Tue, 10 May 2022 21:13:24 +1200
Subject: [PATCH 3/3] make it more futre-proof
---
src/finalhe.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/finalhe.cc b/src/finalhe.cc
index 5a0fc5b..9adc92c 100644
--- a/src/finalhe.cc
+++ b/src/finalhe.cc
@@ -258,7 +258,7 @@ void FinalHE::enableStart() {
pkg->setCoreType(ECoreType::Memecore);
else if (vita->getDeviceVersion() <= "3.68")
pkg->setCoreType(ECoreType::HEncore);
- else if (vita->getDeviceVersion() <= "3.74")
+ else
pkg->setCoreType(ECoreType::HEncore2);
ui.textPkg->setText(tr("Click button to START!"));
ui.btnStart->setEnabled(true);