summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/osi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/osi.cpp')
-rw-r--r--src/mame/video/osi.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/osi.cpp b/src/mame/video/osi.cpp
index d06540810e6..222f3fdd560 100644
--- a/src/mame/video/osi.cpp
+++ b/src/mame/video/osi.cpp
@@ -65,7 +65,7 @@ uint32_t sb2m600_state::screen_update(screen_device &screen, bitmap_ind16 &bitma
color = (color ^ BIT(colorram_data, 0)) ? (((colorram_data >> 1) & 0x07) + 2) : 0;
}
- bitmap.pix16(y, x++) = color;
+ bitmap.pix(y, x++) = color;
charrom_data <<= 1;
}
@@ -98,8 +98,8 @@ uint32_t sb2m600_state::screen_update(screen_device &screen, bitmap_ind16 &bitma
color = (color ^ BIT(colorram_data, 0)) ? (((colorram_data >> 1) & 0x07) + 2) : 0;
}
- bitmap.pix16(y, x++) = color;
- bitmap.pix16(y, x++) = color;
+ bitmap.pix(y, x++) = color;
+ bitmap.pix(y, x++) = color;
charrom_data <<= 1;
}
@@ -128,7 +128,7 @@ uint32_t uk101_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap,
for (int bit = 0; bit < 8; bit++)
{
- bitmap.pix16(y, x) = BIT(charrom_data, 7);
+ bitmap.pix(y, x) = BIT(charrom_data, 7);
x++;
charrom_data <<= 1;
}