summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/ppu2c0x.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/ppu2c0x.cpp')
-rw-r--r--src/devices/video/ppu2c0x.cpp17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/devices/video/ppu2c0x.cpp b/src/devices/video/ppu2c0x.cpp
index 8aa57660318..f82055140b7 100644
--- a/src/devices/video/ppu2c0x.cpp
+++ b/src/devices/video/ppu2c0x.cpp
@@ -1342,20 +1342,3 @@ uint32_t ppu2c0x_device::screen_update(screen_device &screen, bitmap_rgb32 &bitm
render(bitmap, 0, 0, 0, 0);
return 0;
}
-
-/*************************************
- *
- * Utility functions
- *
- *************************************/
-
-rgb_t ppu2c0x_device::get_pixel(int x, int y)
-{
- if (x >= VISIBLE_SCREEN_WIDTH)
- x = VISIBLE_SCREEN_WIDTH - 1;
-
- if (y >= VISIBLE_SCREEN_HEIGHT)
- y = VISIBLE_SCREEN_HEIGHT - 1;
-
- return rgb_t(m_bitmap->pix32(y, x));
-}