summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/widgets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/widgets.cpp')
-rw-r--r--src/frontend/mame/ui/widgets.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/widgets.cpp b/src/frontend/mame/ui/widgets.cpp
index da0b6c12538..cc2c276abfc 100644
--- a/src/frontend/mame/ui/widgets.cpp
+++ b/src/frontend/mame/ui/widgets.cpp
@@ -77,7 +77,7 @@ void widgets_manager::render_triangle(bitmap_argb32 &dest, bitmap_argb32 &source
for (y = 0; y < height; y++)
{
int linewidth = (y * (halfwidth - 1) + (height / 2)) * 255 * 2 / height;
- UINT32 *target = &dest.pix32(y, halfwidth);
+ uint32_t *target = &dest.pix32(y, halfwidth);
// don't antialias if height < 12
if (dest.height() < 12)