mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-04-19 19:14:52 +00:00
exo: Invert quest state.
This commit is contained in:
parent
db3dc4ebd2
commit
510f710c30
1 changed files with 2 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Reference in a new issue