summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/driver.h
diff options
context:
space:
mode:
author Zsolt Vasvari <zsoltvas@mamedev.org>2008-02-29 04:01:09 +0000
committer Zsolt Vasvari <zsoltvas@mamedev.org>2008-02-29 04:01:09 +0000
commitf8cbcafd5e524cebf3afa8096a6d96dc9eca4161 (patch)
tree9a9f77be575a83f32ae56e9d13e033ef430e5bb6 /src/emu/driver.h
parenta3aef48df56d4c2cb9f840fe1b4e01f0c66faab7 (diff)
Replaces mame_bitmap with bitmap_t
Removes mame_bitmap
Diffstat (limited to 'src/emu/driver.h')
-rw-r--r--src/emu/driver.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/driver.h b/src/emu/driver.h
index 367db20dbce..77ec6661111 100644
--- a/src/emu/driver.h
+++ b/src/emu/driver.h
@@ -54,7 +54,7 @@
#define VIDEO_EOF(name) void video_eof_##name(running_machine *machine)
#define VIDEO_EOF_CALL(name) video_eof_##name(machine)
-#define VIDEO_UPDATE(name) UINT32 video_update_##name(running_machine *machine, int screen, mame_bitmap *bitmap, const rectangle *cliprect)
+#define VIDEO_UPDATE(name) UINT32 video_update_##name(running_machine *machine, int screen, bitmap_t *bitmap, const rectangle *cliprect)
#define VIDEO_UPDATE_CALL(name) video_update_##name(machine, screen, bitmap, cliprect)
@@ -83,7 +83,7 @@ typedef void (*video_start_func)(running_machine *machine);
typedef void (*video_reset_func)(running_machine *machine);
typedef void (*palette_init_func)(running_machine *machine, const UINT8 *color_prom);
typedef void (*video_eof_func)(running_machine *machine);
-typedef UINT32 (*video_update_func)(running_machine *machine, int screen, mame_bitmap *bitmap, const rectangle *cliprect);
+typedef UINT32 (*video_update_func)(running_machine *machine, int screen, bitmap_t *bitmap, const rectangle *cliprect);