mirror of
https://github.com/dingusdev/dingusppc.git
synced 2025-01-11 20:29:46 +00:00
ati: Fix ver_blank calculation.
This commit is contained in:
parent
11d61359c1
commit
3483bebdb4
@ -688,7 +688,7 @@ void AtiMach64Gx::crtc_update()
|
||||
|
||||
uint32_t new_vert_blank = new_vtotal - new_height;
|
||||
if (new_vert_blank != this->vert_blank) {
|
||||
this->vert_blank = vert_blank;
|
||||
this->vert_blank = new_vert_blank;
|
||||
need_recalc = true;
|
||||
}
|
||||
|
||||
|
@ -724,7 +724,7 @@ void ATIRage::crtc_update() {
|
||||
|
||||
uint32_t new_vert_blank = new_vtotal - new_height;
|
||||
if (new_vert_blank != this->vert_blank) {
|
||||
this->vert_blank = vert_blank;
|
||||
this->vert_blank = new_vert_blank;
|
||||
need_recalc = true;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user