diff options
author | 2008-01-24 09:12:03 +0000 | |
---|---|---|
committer | 2008-01-24 09:12:03 +0000 | |
commit | f7c5c67e2ef8db35b7171b955f524029b9f75d75 (patch) | |
tree | ba443fb7f441b228522b6dbe5102b9092a4f7324 /src/emu/video.h | |
parent | c1af761befaf01595890cb1256ab8fbf1aca0c49 (diff) |
First in a series of updates to remove the use of the global Machine from as many places as possible
Diffstat (limited to 'src/emu/video.h')
-rw-r--r-- | src/emu/video.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video.h b/src/emu/video.h index dd9b53547bc..0d455ac120a 100644 --- a/src/emu/video.h +++ b/src/emu/video.h @@ -117,7 +117,7 @@ int video_screen_exists(int scrnum); /* ----- global rendering ----- */ /* update the screen, handling frame skipping and rendering */ -void video_frame_update(int debug); +void video_frame_update(running_machine *machine, int debug); /* ----- throttling/frameskipping/performance ----- */ |