File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -188,6 +188,7 @@ void hd44102_device::control_w(u8 data)
188
188
m_y = y;
189
189
}
190
190
}
191
+ break ;
191
192
}
192
193
}
193
194
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class hd44102_device : public device_t
31
31
void write (offs_t offset, u8 data);
32
32
33
33
const u8 *render ();
34
- u32 screen_update (screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
34
+ u32 screen_update (screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); // optional
35
35
36
36
protected:
37
37
// device-level overrides
Original file line number Diff line number Diff line change @@ -274,11 +274,11 @@ void pwm_display_device::sync()
274
274
{
275
275
const attotime now = machine ().time ();
276
276
const attotime last = m_sync_time;
277
- m_sync_time = now;
278
277
279
278
if (last >= now)
280
279
return ;
281
280
281
+ m_sync_time = now;
282
282
const attotime diff = now - last;
283
283
u64 sel = m_rowsel;
284
284
You can’t perform that action at this time.
0 commit comments