mirror of
https://github.com/videolan/vlc.git
synced 2025-01-09 09:18:19 +08:00
730cc399c5
* All intf_*Msg functions now write to stderr. * Implemented a message queue interface plugins can subscribe to. * Wrote the logger interface plugin. Usage: vlc -I logger:filename.log * Lots of fixes in the SPU renderer.
21 lines
499 B
Plaintext
21 lines
499 B
Plaintext
--- plugins/sdl/vout_sdl.c 2001/12/03 16:18:37 1.66
|
|
+++ plugins/sdl/vout_sdl.c 2001/12/04 13:29:29
|
|
@@ -329,12 +329,16 @@
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONUP:
|
|
+#if 0
|
|
switch( event.button.button )
|
|
{
|
|
case SDL_BUTTON_RIGHT:
|
|
p_main->p_intf->b_menu_change = 1;
|
|
break;
|
|
}
|
|
+#else
|
|
+ //intf_ProcessKey( p_main->p_intf, SDLK_q );
|
|
+#endif
|
|
break;
|
|
|
|
case SDL_MOUSEBUTTONDOWN:
|
|
|