diff options
author | 2008-03-11 16:16:30 +0000 | |
---|---|---|
committer | 2008-03-11 16:16:30 +0000 | |
commit | 86b798b37a6cbdb875df3dae4a2d0c3256951d32 (patch) | |
tree | 6635a7a0c49eda53647faf835f7897377fb4e995 /src/emu/render.h | |
parent | 706d9f408f97c9b428b7e263b643505dbeaf1623 (diff) |
- More machine->screen removal
- Hooked up swapped videoram in Karnov properly -- same idea as Burger Time
Diffstat (limited to 'src/emu/render.h')
-rw-r--r-- | src/emu/render.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/render.h b/src/emu/render.h index def4516e058..840d6ef891d 100644 --- a/src/emu/render.h +++ b/src/emu/render.h @@ -308,8 +308,8 @@ void render_init(running_machine *machine); /* set a notifier that we call before doing long scaling operations */ void render_set_rescale_notify(running_machine *machine, int (*notifier)(running_machine *, int, int)); -/* return a bitmask indicating the live screens */ -UINT32 render_get_live_screens_mask(void); +/* return a boolean indicating if the screen is live */ +int render_is_live_screen(const device_config *screen); /* return the smallest maximum update rate across all targets */ float render_get_max_update_rate(void); |