summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--libvo/vo_dxr3.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/libvo/vo_dxr3.c b/libvo/vo_dxr3.c
index 1fbb56de24..e2fd2d4f9f 100644
--- a/libvo/vo_dxr3.c
+++ b/libvo/vo_dxr3.c
@@ -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 @@ static uint32_t preinit(const char *arg)
}
/* 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 @@ static uint32_t preinit(const char *arg)
/* 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 */