![]() |
|
Disable PowerManagement Option - Printable Version +- VBA-M Forums (http://vba-m.com/forum) +-- Forum: VisualBoy Advance-M (/Forum-visualboy-advance-m) +--- Forum: Suggestions (/Forum-suggestions) +---- Forum: GUI (/Forum-gui--45) +---- Thread: Disable PowerManagement Option (/Thread-disable-powermanagement-option) |
Disable PowerManagement Option - shinra358 - 05-28-2012 02:58 AM I would like to suggest an option to keep screensaver/screen timeout/sleep mode from coming on like Zsnesw, Epsxe, Mame, etc. P.S. Forgive me if I've asked this before here, it's hard for me to keep track with all the emus out there. RE: Disable PowerManagement Option - Squall Leonhart - 05-28-2012 04:10 AM The emulator already prevents the screensaver from coming on. Code: LRESULT MainWnd::OnMySysCommand(WPARAM wParam, LPARAM lParam)However, Most applications that prevent the screensaver from coming up trip up on a change microsoft introduced in Windows XP SP3 that has carried over to Vista and 7, that is; "on resume, display logon/welcome screen" is checked, the Screensaver will run regardless of the applications capability for preventing the screen saver. Quote:"Microsoft Windows Vista and later: If password protection is enabled by policy, the screen saver is started regardless of what an application does with the SC_SCREENSAVE notification—even if fails to pass it to DefWindowProc." |