make the 4dwave nx chip work

Submitted by:	Philippe Anel <xigh@noos.fr>
This commit is contained in:
Cameron Grant 2001-08-23 12:02:29 +00:00
parent 92f39b2c05
commit 48875621e1
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=82183

View File

@ -340,7 +340,7 @@ tr_wrch(struct tr_chinfo *ch)
ch->cso &= 0x00ffffff;
ch->eso &= 0x00ffffff;
cr[0]=((ch->delta & 0xff)<<24) | (ch->cso);
cr[2]=((ch->delta>>16)<<24) | (ch->eso);
cr[2]=((ch->delta>>8)<<24) | (ch->eso);
cr[3]|=(ch->alpha<<20) | (ch->fms<<16) | (ch->fmc<<14);
break;
}