Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/public/scripts/ssnc.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function initSerialChecker() {
return 'patched';
} else if (assemblyLine === 4) {
if (checkingValue < 4001100) return 'unpatched';
if (checkingValue < 4001250) return 'maybe';
if (checkingValue < 4001300) return 'maybe';
return 'patched';
} else if (assemblyLine === 7) {
if (checkingValue < 7001750) return 'unpatched';
Expand Down Expand Up @@ -158,4 +158,4 @@ if (document.readyState === "loading") {
}

const observer = new MutationObserver(tryInit);
observer.observe(document.body, { childList: true, subtree: true });
observer.observe(document.body, { childList: true, subtree: true });
2 changes: 1 addition & 1 deletion docs/user_guide/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ The following information is based on [this GBATemp thread](https://gbatemp.net/
| Serial Numbers | <span style="color:green">Unpatched</span> | <span style="color:orange">Potentially patched</span> | <span style="color:red">Patched</span> |
| :------------- | :----------------------------------------- | :---------------------------------------------------- | :------------------------------------- |
| XAW1 | XAW10000000000 to XAW10065000000 | XAW10065000000 to XAW10120000000 | XAW10120000000 and up |
| XAW4 | XAW40000000000 to XAW40011000000 | XAW40011000000 to XAW40012500000 | XAW40012500000 and up |
| XAW4 | XAW40000000000 to XAW40011000000 | XAW40011000000 to XAW40013000000 | XAW40013000000 and up |
| XAW7 | XAW70000000000 to XAW70017500000 | XAW70017500000 to XAW70030000000 | XAW70030000000 and up |
| XAW9 | **N/A** | XAW90000000000 and up | **N/A** |
| XAJ1 | XAJ10000000000 to XAJ10020000000 | XAJ10020000000 to XAJ10030000000 | XAJ10030000000 and up |
Expand Down
Loading