mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
Frame: Use kIOPMAssertionTypePreventUserIdleDisplaySleep to inhibit screensaver on macOS
This commit is contained in:
parent
c9b2c29ead
commit
4537969822
1 changed files with 3 additions and 2 deletions
|
@ -714,8 +714,9 @@ void CFrame::InhibitScreensaver()
|
|||
if (SConfig::GetInstance().bDisableScreenSaver)
|
||||
{
|
||||
CFStringRef reason_for_activity = CFSTR("Emulation Running");
|
||||
if (IOPMAssertionCreateWithName(kIOPMAssertionTypeNoDisplaySleep, kIOPMAssertionLevelOn,
|
||||
reason_for_activity, &m_power_assertion) != kIOReturnSuccess)
|
||||
if (IOPMAssertionCreateWithName(kIOPMAssertionTypePreventUserIdleDisplaySleep,
|
||||
kIOPMAssertionLevelOn, reason_for_activity,
|
||||
&m_power_assertion) != kIOReturnSuccess)
|
||||
{
|
||||
m_power_assertion = kIOPMNullAssertionID;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue