Skip to content

Commit

Permalink
exo: Invert quest state.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZachyCatGames committed Jul 16, 2024
1 parent 4617fec commit 5477711
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libraries/libexosphere/source/fuse/fuse_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,8 @@ namespace ams::fuse {
}

RetailInteractiveDisplayState GetRetailInteractiveDisplayState() {
return static_cast<RetailInteractiveDisplayState>(util::BitPack32{GetCommonOdmWord(4)}.Get<OdmWord4::RetailInteractiveDisplayState>());
/* I do this so I can be incredibly lazy with certain things, please don't kill me :( */
return static_cast<RetailInteractiveDisplayState>(!util::BitPack32{GetCommonOdmWord(4)}.Get<OdmWord4::RetailInteractiveDisplayState>());
}

pmic::Regulator GetRegulator() {
Expand Down

0 comments on commit 5477711

Please sign in to comment.