Skip to content

Commit

Permalink
Deprecate compatibility packs
Browse files Browse the repository at this point in the history
  • Loading branch information
cuevavirus committed May 2, 2020
1 parent 6e7d16c commit 8f2d794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,10 @@ pkgj is shipped with valid default URLs. If you wish to change some settings, th
This error is caused by AntiBlackList. To fix it, completely undo then uninstall AntiBlackList and install [DolcePolce](https://forum.devchroma.nl/index.php/topic,58.0.html) plugin instead.
7. How do I use compatibility packs?
Compatiblity packs are deprecated and disabled by default. It is recommended to use [reF00D](https://github.com/dots-tb/reF00D) or [0syscall6](https://github.com/SKGleba/0syscall6). If you would still like to use compatiblity packs, set `url_comppack` to `https://gitlab.com/nopaystation_repos/nps_compati_packs/raw/master/` in the config file. Firmwares 3.65 or lower require a workaround for TLS. The compatibility pack list has not been updated since Oct 2019.
# Building
pkgj uses conan and cmake to build. The setup is a bit tedious, so the
Expand Down
8 changes: 3 additions & 5 deletions src/gameview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,22 +176,20 @@ void GameView::printDiagnostic()
{
if (_refood_present)
ImGui::Text(
"- This game will work thanks to reF00D, install the "
"compatibility packs for faster game boot times");
"- This game will work thanks to reF00D");
else if (_0syscall6_present)
ImGui::Text(
"- This game will work thanks to 0syscall6");
else
printError(
"- Your firmware is too old to play this game, you "
"must install the compatibility pack, reF00D, or 0syscall6");
"must install reF00D or 0syscall6");
}
}
else
{
ImGui::Text(
"- Your firmware is recent enough, no need for compatibility "
"packs");
"- Your firmware is recent enough");
}

if (_comppack_versions.present && _comppack_versions.base.empty() &&
Expand Down

0 comments on commit 8f2d794

Please sign in to comment.