Commit 24c5c471 authored by Gildas Bazin's avatar Gildas Bazin

* modules/video_output/directx/events.c: forgot an argument to SetThreadExecutionState().

parent d904d698
...@@ -111,7 +111,7 @@ void DirectXEventThread( event_thread_t *p_event ) ...@@ -111,7 +111,7 @@ void DirectXEventThread( event_thread_t *p_event )
if( OurSetThreadExecutionState ) if( OurSetThreadExecutionState )
/* Prevent monitor from powering off */ /* Prevent monitor from powering off */
OurSetThreadExecutionState( ES_DISPLAY_REQUIRED ); OurSetThreadExecutionState( ES_DISPLAY_REQUIRED | ES_CONTINUOUS );
else else
msg_Dbg( p_event, "no support for SetThreadExecutionState()" ); msg_Dbg( p_event, "no support for SetThreadExecutionState()" );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment