Skip to content

Commit

Permalink
HOS 15.0.0 Hotfix
Browse files Browse the repository at this point in the history
This update removes the WIFI RSSI Levels as calling wlaninfInitialize() will break the overlay.
  • Loading branch information
proferabg committed Oct 13, 2022
1 parent 932788d commit add7477
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ endif

APP_TITLE := EdiZon
APP_AUTHOR := WerWolv & proferabg
APP_VERSION := v1.0.2c
APP_VERSION := v1.0.2d

TARGET := EdiZon
OUTDIR := out
Expand Down
6 changes: 4 additions & 2 deletions source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ class GuiMain : public tsl::Gui {
auto *rootFrame = new tsl::elm::HeaderOverlayFrame();
rootFrame->setHeader(new tsl::elm::CustomDrawer([this](tsl::gfx::Renderer *renderer, s32 x, s32 y, s32 w, s32 h) {
renderer->drawString("EdiZon", false, 20, 50, 30, renderer->a(tsl::style::color::ColorText));
renderer->drawString("v1.0.2c", false, 20, 70, 15, renderer->a(tsl::style::color::ColorDescription));
renderer->drawString("v1.0.2d", false, 20, 70, 15, renderer->a(tsl::style::color::ColorDescription));

if (edz::cheat::CheatManager::getProcessID() != 0) {
renderer->drawString("Program ID:", false, 150, 40, 15, renderer->a(tsl::style::color::ColorText));
Expand Down Expand Up @@ -324,7 +324,9 @@ class EdiZonOverlay : public tsl::Overlay {
dmntchtInitialize();
edz::cheat::CheatManager::initialize();
tsInitialize();
wlaninfInitialize();
if (!hosversionAtLeast(15,0,0)) {
wlaninfInitialize();
}
clkrstInitialize();
pcvInitialize();

Expand Down

0 comments on commit add7477

Please sign in to comment.