diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-09-16 12:09:24 +0000 |
---|---|---|
committer | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2005-09-16 12:09:24 +0000 |
commit | bcc7a8466aa6018f2db4b59ec1d1de47be0b284e (patch) | |
tree | df15620a6106f0d438b23cef821f50f3fa805e09 | |
parent | f311c19f228631fa75d77cb850227aeb97282c70 (diff) |
Missing break for WM_SYSCOMMAND handling.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@16500 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | libvo/vo_directx.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libvo/vo_directx.c b/libvo/vo_directx.c index 0f9bfa32c2..16a5db166a 100644 --- a/libvo/vo_directx.c +++ b/libvo/vo_directx.c @@ -913,6 +913,7 @@ static LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM l mp_msg(MSGT_VO, MSGL_V ,"<vo_directx><INFO>killing screensaver\n" ); return 0; } + break; } case WM_KEYDOWN: { |