# HG changeset patch # User nick # Date 1013847624 0 # Node ID 39f3bfae472cf8a881ceaa03f99a34470e777c9e # Parent e441ca06638d3ef3af192eca65bff89da4cdb4c8 Direct rendering with dshow codecs support. (Was untested but should work) diff -r e441ca06638d -r 39f3bfae472c vidix/drivers/mach64_vid.c --- a/vidix/drivers/mach64_vid.c Sat Feb 16 07:55:44 2002 +0000 +++ b/vidix/drivers/mach64_vid.c Sat Feb 16 08:20:24 2002 +0000 @@ -450,8 +450,8 @@ else pitch = 32; break; default: - if(spy > 16) pitch = spy; - else pitch = 32; + if(spy >= 16) pitch = spy; + else pitch = 16; break; } return pitch;