# HG changeset patch # User mswitch # Date 1035824917 0 # Node ID 32939f2b3d2ef89e83e11e126b012500dafdd101 # Parent fa80c909539bc3b989fa34fc3b54dd0dfdb26a01 Fixed stupid bug relating to multiple cards on athlons diff -r fa80c909539b -r 32939f2b3d2e libvo/vo_dxr3.c --- a/libvo/vo_dxr3.c Mon Oct 28 15:04:48 2002 +0000 +++ b/libvo/vo_dxr3.c Mon Oct 28 17:08:37 2002 +0000 @@ -6,6 +6,9 @@ */ /* ChangeLog added 2002-01-10 + * 2002-10-28: + * Fixed multicard bug on athlons + * * 2002-07-18: * Disabled spuenc support, this is still not stable enough =( * @@ -541,7 +544,7 @@ } /* Open the video interface */ - if (arg && !noprebuf) { + if (arg && arg[0]) { sprintf(devname, "/dev/em8300_mv-%s", arg); } else { /* Try new naming scheme by default */ @@ -565,7 +568,7 @@ /* Open the subpicture interface */ fdflags |= O_NONBLOCK; - if (arg && !noprebuf) { + if (arg && arg[0]) { sprintf(devname, "/dev/em8300_sp-%s", arg); } else { /* Try new naming scheme by default */