exo: Invert quest state.

This commit is contained in:
Zachary Kirtz 2023-03-31 21:51:46 -05:00 committed by laleeroy
commit 510f710c30

View file

@ -359,7 +359,8 @@ namespace ams::fuse {
} }
RetailInteractiveDisplayState GetRetailInteractiveDisplayState() { 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() { pmic::Regulator GetRegulator() {