summaryrefslogtreecommitdiffstats
path: root/Gui
diff options
context:
space:
mode:
Diffstat (limited to 'Gui')
-rw-r--r--Gui/win32/gui.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/Gui/win32/gui.c b/Gui/win32/gui.c
index a04610564c..a795d0bd69 100644
--- a/Gui/win32/gui.c
+++ b/Gui/win32/gui.c
@@ -601,6 +601,17 @@ static LRESULT CALLBACK SubProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM l
SetForegroundWindow(hWnd);
return 0;
}
+ case WM_SYSCOMMAND:
+ {
+ switch(wParam)
+ {
+ case SC_SCREENSAVE:
+ case SC_MONITORPOWER:
+ mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>killing screensaver\n" );
+ return 0;
+ }
+ break;
+ }
case WM_PAINT:
{
PAINTSTRUCT ps;
@@ -722,17 +733,6 @@ static LRESULT CALLBACK EventProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM
case WM_CHAR:
mplayer_put_key(wParam);
break;
- case WM_SYSCOMMAND:
- {
- switch(wParam)
- {
- case SC_SCREENSAVE:
- case SC_MONITORPOWER:
- mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>killing screensaver\n" );
- return 0;
- }
- break;
- }
case WM_COPYDATA:
{
if(lParam)