diff options
Diffstat (limited to 'src/frontend/mame/ui/widgets.cpp')
-rw-r--r-- | src/frontend/mame/ui/widgets.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/widgets.cpp b/src/frontend/mame/ui/widgets.cpp index 3d92bd7c03a..7a82310879e 100644 --- a/src/frontend/mame/ui/widgets.cpp +++ b/src/frontend/mame/ui/widgets.cpp @@ -8,9 +8,10 @@ *********************************************************************/ +#include "emu.h" + #include "widgets.h" -#include "rendutil.h" -#include "drivenum.h" + namespace ui { /*************************************************************************** @@ -26,7 +27,6 @@ widgets_manager::widgets_manager(running_machine &machine) , m_hilight_texture() , m_hilight_main_bitmap(std::make_unique<bitmap_argb32>(1, 128)) , m_hilight_main_texture() - , m_bgrnd_texture() { render_manager &render(machine.render()); auto const texture_free([&render](render_texture *texture) { render.texture_free(texture); }); |