summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/hp1ll3.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/hp1ll3.cpp')
-rw-r--r--src/devices/video/hp1ll3.cpp20
1 files changed, 4 insertions, 16 deletions
diff --git a/src/devices/video/hp1ll3.cpp b/src/devices/video/hp1ll3.cpp
index 5f34138f940..5394e2145fd 100644
--- a/src/devices/video/hp1ll3.cpp
+++ b/src/devices/video/hp1ll3.cpp
@@ -823,22 +823,10 @@ uint32_t hp1ll3_device::screen_update(screen_device &screen, bitmap_ind16 &bitma
{
uint16_t const gfx = m_videoram[x];
- *p++ = BIT(gfx, 15);
- *p++ = BIT(gfx, 14);
- *p++ = BIT(gfx, 13);
- *p++ = BIT(gfx, 12);
- *p++ = BIT(gfx, 11);
- *p++ = BIT(gfx, 10);
- *p++ = BIT(gfx, 9);
- *p++ = BIT(gfx, 8);
- *p++ = BIT(gfx, 7);
- *p++ = BIT(gfx, 6);
- *p++ = BIT(gfx, 5);
- *p++ = BIT(gfx, 4);
- *p++ = BIT(gfx, 3);
- *p++ = BIT(gfx, 2);
- *p++ = BIT(gfx, 1);
- *p++ = BIT(gfx, 0);
+ for (int i = 15; i >= 0; i--)
+ {
+ *p++ = BIT(gfx, i);
+ }
}
}