Force recalculation of screen parameters when only the input clock changes.

This commit is contained in:
Wilbert Pol 2009-01-17 13:55:16 +00:00
parent dd4b5dbe5f
commit 343aa22d28

View File

@ -623,7 +623,7 @@ void mc6845_set_clock(const device_config *device, int clock)
if (clock != mc6845->clock) if (clock != mc6845->clock)
{ {
mc6845->clock = clock; mc6845->clock = clock;
recompute_parameters(mc6845, FALSE); recompute_parameters(mc6845, TRUE);
} }
} }