mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-29 15:57:52 -05:00
Services: Stubs and minor changes
This commit is contained in:
@ -38,7 +38,7 @@ ChargeLevels GetBatteryLevel() {
|
||||
return ChargeLevels::CompletelyFull; // Set to a completely full battery
|
||||
}
|
||||
|
||||
void PTMInit() {
|
||||
void Init() {
|
||||
AddService(new PTM_Play_Interface);
|
||||
AddService(new PTM_Sysm_Interface);
|
||||
AddService(new PTM_U_Interface);
|
||||
@ -68,7 +68,7 @@ void PTMInit() {
|
||||
}
|
||||
}
|
||||
|
||||
void PTMShutdown() {
|
||||
void Shutdown() {
|
||||
|
||||
}
|
||||
|
||||
|
@ -56,10 +56,10 @@ u32 GetShellState();
|
||||
ChargeLevels GetBatteryLevel();
|
||||
|
||||
/// Initialize the PTM service
|
||||
void PTMInit();
|
||||
void Init();
|
||||
|
||||
/// Shutdown the PTM service
|
||||
void PTMShutdown();
|
||||
void Shutdown();
|
||||
|
||||
} // namespace PTM
|
||||
} // namespace Service
|
||||
|
Reference in New Issue
Block a user