diff options
author | 2019-07-02 20:51:24 -0300 | |
---|---|---|
committer | 2019-07-02 20:51:24 -0300 | |
commit | 2a664c1f23140acc85e2e837da32dabe404f32f3 (patch) | |
tree | e09337d13bd1fe3ca36ac8b0cf673d78b86ea570 /src/devices/video/ppu2c0x.h | |
parent | b1dff791ed66f114f3b8d63c156d8f16f06c0f0c (diff) |
nes, sms: Fix light gun regression
Diffstat (limited to 'src/devices/video/ppu2c0x.h')
-rw-r--r-- | src/devices/video/ppu2c0x.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/ppu2c0x.h b/src/devices/video/ppu2c0x.h index 1f0eb086369..78ebef0b2ce 100644 --- a/src/devices/video/ppu2c0x.h +++ b/src/devices/video/ppu2c0x.h @@ -92,7 +92,7 @@ public: void update_scanline(); void spriteram_dma(address_space &space, const uint8_t page); - void render(bitmap_rgb32 &bitmap, int flipx, int flipy, int sx, int sy); + void render(bitmap_rgb32 &bitmap, int flipx, int flipy, int sx, int sy, const rectangle &cliprect); uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect); int get_current_scanline() { return m_scanline; } |