changeset 5065:0d0694219daf

This will slow down wobbling (just a bit)
author mswitch
date Wed, 13 Mar 2002 14:39:24 +0000
parents e0122262fb3c
children b3d900e9a215
files libvo/vo_dxr3.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/vo_dxr3.c	Wed Mar 13 14:15:00 2002 +0000
+++ b/libvo/vo_dxr3.c	Wed Mar 13 14:39:24 2002 +0000
@@ -233,10 +233,10 @@
 	ioctl(fd_control, EM8300_IOCTL_GET_VIDEOMODE, &ioval);
 	if (ioval == EM8300_VIDEOMODE_NTSC) {
 		printf("VO: [dxr3] Setting up for NTSC.\n");
-		aspect_save_screenres((352 * 2), 240);
+		aspect_save_screenres(352, 240);
 	} else {
 		printf("VO: [dxr3] Setting up for PAL/SECAM.\n");
-		aspect_save_screenres((352 * 2), 288);
+		aspect_save_screenres(352, 288);
 	}
 	aspect(&s_width, &s_height, A_ZOOM);
 	s_width -= s_width % 16;