diff options
Diffstat (limited to 'src/emu/ui/ui.c')
-rw-r--r-- | src/emu/ui/ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/ui.c b/src/emu/ui/ui.c index d4a4dc6afd3..ac5e0aba020 100644 --- a/src/emu/ui/ui.c +++ b/src/emu/ui/ui.c @@ -414,7 +414,7 @@ void ui_manager::update_and_render(render_container *container) if (alpha > 255) alpha = 255; if (alpha >= 0) - container->add_rect(0.0f, 0.0f, 1.0f, 1.0f, MAKE_ARGB(alpha,0x00,0x00,0x00), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA)); + container->add_rect(0.0f, 0.0f, 1.0f, 1.0f, rgb_t(alpha,0x00,0x00,0x00), PRIMFLAG_BLENDMODE(BLENDMODE_ALPHA)); } // render any cheat stuff at the bottom |