Corrected CRTC address mask on Mach64 - SuSE 6.3 YaST2 doesn't give broken display anymore.
This commit is contained in:
parent
17865d84bc
commit
2c8dfb11d3
1 changed files with 1 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ void mach64_out(uint16_t addr, uint8_t val, void *p)
|
|||
break;
|
||||
|
||||
case 0x3D4:
|
||||
svga->crtcreg = val & 0x1f;
|
||||
svga->crtcreg = val & 0x3f;
|
||||
return;
|
||||
case 0x3D5:
|
||||
if ((svga->crtcreg < 7) && (svga->crtc[0x11] & 0x80))
|
||||
|
|
|
|||
Loading…
Reference in a new issue