# HG changeset patch # User mswitch # Date 1016030364 0 # Node ID 0d0694219dafa570639defc80210d0d8c5295b5b # Parent e0122262fb3cf3760c3c0006759bde36381986cb This will slow down wobbling (just a bit) diff -r e0122262fb3c -r 0d0694219daf libvo/vo_dxr3.c --- 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;