openbsd-ports/graphics/fxtv/patches/patch-actions_c

20 lines
683 B
Plaintext
Raw Normal View History

$OpenBSD: patch-actions_c,v 1.2 2002/02/02 00:52:18 naddy Exp $
--- actions.c.orig Mon Feb 12 15:26:23 2001
+++ actions.c Wed Aug 15 13:46:30 2001
@@ -748,11 +748,14 @@ static void TVActionToggleZoomAction(
/* FIXME: Parameterize the full-screen arg */
2000-05-28 19:41:33 -04:00
TVSCREENSetZoomState( !d->zoom_on, fullscreen );
TVTOOLSSetToggleState( TV_TOOLITEM_FULLSCREEN, d->zoom_on );
-
+
+#ifndef __OpenBSD__
2000-05-28 19:41:33 -04:00
/* This is an ugly hack. Changing the video mode can take a while, */
/* If this was initiated by a remote event, this delay messes up */
/* remote key debouncing. Just flush the buffer of any repeats. */
TVREMOTEFlush();
+#endif
+
2000-05-28 19:41:33 -04:00
}