diff options
author | 2008-02-29 04:01:09 +0000 | |
---|---|---|
committer | 2008-02-29 04:01:09 +0000 | |
commit | f8cbcafd5e524cebf3afa8096a6d96dc9eca4161 (patch) | |
tree | 9a9f77be575a83f32ae56e9d13e033ef430e5bb6 /src/emu/uimenu.c | |
parent | a3aef48df56d4c2cb9f840fe1b4e01f0c66faab7 (diff) |
Replaces mame_bitmap with bitmap_t
Removes mame_bitmap
Diffstat (limited to 'src/emu/uimenu.c')
-rw-r--r-- | src/emu/uimenu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/uimenu.c b/src/emu/uimenu.c index 62e65de976c..7d4602f7504 100644 --- a/src/emu/uimenu.c +++ b/src/emu/uimenu.c @@ -125,7 +125,7 @@ static const game_driver **select_game_driver_list; static dip_descriptor dip_switch_model[MAX_PHYSICAL_DIPS]; -static mame_bitmap *hilight_bitmap; +static bitmap_t *hilight_bitmap; static render_texture *hilight_texture; static render_texture *arrow_texture; @@ -174,7 +174,7 @@ static UINT32 menu_tape_control(UINT32 state); #endif /* MESS */ /* menu helpers */ -static void menu_render_triangle(mame_bitmap *dest, const mame_bitmap *source, const rectangle *sbounds, void *param); +static void menu_render_triangle(bitmap_t *dest, const bitmap_t *source, const rectangle *sbounds, void *param); static int input_menu_get_items(input_item_data *itemlist, int group); static int input_menu_get_game_items(input_item_data *itemlist); @@ -1756,7 +1756,7 @@ static UINT32 menu_tape_control(UINT32 state) indicators -------------------------------------------------*/ -static void menu_render_triangle(mame_bitmap *dest, const mame_bitmap *source, const rectangle *sbounds, void *param) +static void menu_render_triangle(bitmap_t *dest, const bitmap_t *source, const rectangle *sbounds, void *param) { int halfwidth = dest->width / 2; int height = dest->height; |