Skip to content

Commit

Permalink
adopting hack listed in #147 to solve hang
Browse files Browse the repository at this point in the history
  • Loading branch information
Shwartsman committed Dec 16, 2023
1 parent 0270412 commit cd350d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bochs/iodev/display/voodoo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,8 @@ bool bx_voodoo_1_2_c::update_timing(void)
BX_INFO(("Voodoo output %dx%d@%uHz", v->fbi.width, v->fbi.height, (unsigned)v->vertfreq));
v->fbi.swaps_pending = 0;
v->vtimer_running = 1;
bx_virt_timer.activate_timer(s.vertical_timer_id, (Bit32u)s.vdraw.vtotal_usec, 1);
if (v->vidclk != 0.0)
bx_virt_timer.activate_timer(s.vertical_timer_id, (Bit32u)s.vdraw.vtotal_usec, 1);
return 1;
}

Expand Down

0 comments on commit cd350d8

Please sign in to comment.