Fixed video clock on Cirrus Logic cards.
This commit is contained in:
parent
592b07be63
commit
94fe85b17e
1 changed files with 1 additions and 1 deletions
|
|
@ -555,7 +555,7 @@ void gd5429_recalctimings(svga_t *svga)
|
|||
vclk /= 3.0;
|
||||
break;
|
||||
}
|
||||
svga->clock = cpuclock / vclk;
|
||||
svga->clock = (cpuclock * (float)(1ull << 32)) / vclk;
|
||||
|
||||
svga->vram_display_mask = (svga->crtc[0x1b] & 2) ? gd5429->vram_mask : 0x3ffff;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue