summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/uigfx.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2008-12-04 10:17:17 +0000
committer Aaron Giles <aaron@aarongiles.com>2008-12-04 10:17:17 +0000
commit60bc02ae1bb9c2618901abf6b5f24c02561b4547 (patch)
tree2ab801a7daa5c9a5f947c24822d66a3d2b5c349c /src/emu/uigfx.c
parent2c3a713213844d1d99c840acf1e7882d6e83048d (diff)
Removed fillbitmap() macro in favor of direct calls to bitmap_fill().
Note that the parameters to the latter are in a different order (bitmap, clip, color). [Atari Ace]
Diffstat (limited to 'src/emu/uigfx.c')
-rw-r--r--src/emu/uigfx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/uigfx.c b/src/emu/uigfx.c
index 8b2ffeee3cf..72ab6c4db55 100644
--- a/src/emu/uigfx.c
+++ b/src/emu/uigfx.c
@@ -740,13 +740,13 @@ static void gfxset_update_bitmap(running_machine *machine, ui_gfx_state *state,
/* otherwise, fill with transparency */
else
- fillbitmap(state->bitmap, 0, &cellbounds);
+ bitmap_fill(state->bitmap, &cellbounds, 0);
}
}
/* otherwise, fill with transparency */
else
- fillbitmap(state->bitmap, 0, &cellbounds);
+ bitmap_fill(state->bitmap, &cellbounds, 0);
}
/* reset the texture to force an update */