Commit f469840d authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Win32 screen: use TEXT macro

parent 8d7cd932
...@@ -56,7 +56,7 @@ int screen_InitCapture( demux_t *p_demux ) ...@@ -56,7 +56,7 @@ int screen_InitCapture( demux_t *p_demux )
return VLC_ENOMEM; return VLC_ENOMEM;
/* Get the device context for the whole screen */ /* Get the device context for the whole screen */
p_data->hdc_src = CreateDC( "DISPLAY", NULL, NULL, NULL ); p_data->hdc_src = CreateDC( TEXT("DISPLAY"), NULL, NULL, NULL );
if( !p_data->hdc_src ) if( !p_data->hdc_src )
{ {
msg_Err( p_demux, "cannot get device context" ); msg_Err( p_demux, "cannot get device context" );
......
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