keep reserved bits zeroed, test & bug report by andee (at irc.freenode.net)

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@9211 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
iive 2003-02-01 20:15:48 +00:00
parent 0cb79b7655
commit 18497051d1
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ typedef struct voodoo_yuv_fb_t voodoo_yuv_fb;
#define TDFXF_HSYNC_MASK 0x03
#define TDFXF_VSYNC_MASK 0x0c
#define XYREG(x,y) (((((unsigned long)y) & 0xFFFF) << 16) | (((unsigned long)x) & 0xFFFF))
#define XYREG(x,y) (((((unsigned long)y) & 0x1FFF) << 16) | (((unsigned long)x) & 0x1FFF))
//#define TDFXFB_DEBUG
#ifdef TDFXFB_DEBUG