summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video.h')
-rw-r--r--src/emu/video.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/emu/video.h b/src/emu/video.h
index 902d1a7428a..3910ad898f6 100644
--- a/src/emu/video.h
+++ b/src/emu/video.h
@@ -255,7 +255,7 @@ void video_set_fastforward(int fastforward);
/* ----- snapshots ----- */
/* save a snapshot of a given screen */
-void video_screen_save_snapshot(const device_config *screen, mame_file *fp);
+void video_screen_save_snapshot(running_machine *machine, const device_config *screen, mame_file *fp);
/* save a snapshot of all the active screens */
void video_save_active_screen_snapshots(running_machine *machine);
@@ -263,12 +263,12 @@ void video_save_active_screen_snapshots(running_machine *machine);
/* ----- movie recording ----- */
-int video_mng_is_movie_active(const device_config *screen);
-void video_mng_begin_recording(const device_config *screen, const char *name);
-void video_mng_end_recording(const device_config *screen);
+int video_mng_is_movie_active(running_machine *machine);
+void video_mng_begin_recording(running_machine *machine, const char *name);
+void video_mng_end_recording(running_machine *machine);
-void video_avi_begin_recording(const device_config *screen, const char *name);
-void video_avi_end_recording(const device_config *screen);
+void video_avi_begin_recording(running_machine *machine, const char *name);
+void video_avi_end_recording(running_machine *machine);
void video_avi_add_sound(running_machine *machine, const INT16 *sound, int numsamples);
#endif /* __VIDEO_H__ */