psm: Stub GetBatteryChargePercentage

Used by LovePotion Lua Homebrew. Stubbed to return 100% charge.
This commit is contained in:
Zach Hilman
2018-10-20 17:23:43 -04:00
parent 3b8c0f8885
commit 10a2d20e26
2 changed files with 14 additions and 1 deletions

View File

@ -15,6 +15,9 @@ class PSM final : public ServiceFramework<PSM> {
public:
explicit PSM();
~PSM() override;
private:
void GetBatteryChargePercentage(Kernel::HLERequestContext& ctx);
};
void InstallInterfaces(SM::ServiceManager& sm);