Skip to content

Commit

Permalink
hardwareinfo: Fix TA-096/TA-097 logic
Browse files Browse the repository at this point in the history
  • Loading branch information
joel16 committed Dec 18, 2024
1 parent 85b0fac commit a2b7cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/source/hardwareinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ namespace HardwareInfo {
{ 0x00810000, 0x00324000, 0x00000143, "TA-094v2" },

/* PSP-E100x (PSP Essentials aka PSP Street) */
{ 0x00900000, 0x00403000, 0x00000154, "TA-096" }
{ 0x00900000, 0x00403000, 0x00000154, "TA-09X" }
};

int GetModelSymbol(void) {
Expand Down Expand Up @@ -114,7 +114,7 @@ namespace HardwareInfo {
}
}
// TA-096 / TA-097 logic
else if (i == 27) {
else if (i == 29) {
if (strncmp(pspGetInitialFW(initial_fw), "6.50", 4) == 0) {
ret_mobo = const_cast<char *>("TA-096");
}
Expand Down

0 comments on commit a2b7cbb

Please sign in to comment.