summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/zx8301.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/zx8301.h')
-rw-r--r--src/mess/video/zx8301.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/video/zx8301.h b/src/mess/video/zx8301.h
index 52be5bf8730..ba776bf3f59 100644
--- a/src/mess/video/zx8301.h
+++ b/src/mess/video/zx8301.h
@@ -88,7 +88,7 @@ public:
DECLARE_READ8_MEMBER( data_r );
DECLARE_WRITE8_MEMBER( data_w );
- void update_screen(bitmap_ind16 &bitmap, const rectangle &cliprect);
+ UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
@@ -105,8 +105,8 @@ protected:
inline UINT8 readbyte(offs_t address);
inline void writebyte(offs_t address, UINT8 data);
- void draw_line_mode4(bitmap_ind16 &bitmap, int y, UINT16 da);
- void draw_line_mode8(bitmap_ind16 &bitmap, int y, UINT16 da);
+ void draw_line_mode4(bitmap_rgb32 &bitmap, int y, UINT16 da);
+ void draw_line_mode8(bitmap_rgb32 &bitmap, int y, UINT16 da);
private:
static const device_timer_id TIMER_VSYNC = 0;