summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tc0150rod.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tc0150rod.h')
-rw-r--r--src/mame/video/tc0150rod.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/tc0150rod.h b/src/mame/video/tc0150rod.h
index 403bdb0a626..01dae809bda 100644
--- a/src/mame/video/tc0150rod.h
+++ b/src/mame/video/tc0150rod.h
@@ -8,11 +8,11 @@
class tc0150rod_device : public device_t
{
public:
- tc0150rod_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ tc0150rod_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock);
DECLARE_READ16_MEMBER( word_r );
DECLARE_WRITE16_MEMBER( word_w );
- void draw(bitmap_ind16 &bitmap, const rectangle &cliprect, int y_offs, int palette_offs, int type, int road_trans, bitmap_ind8 &priority_bitmap, uint32_t low_priority, uint32_t high_priority);
+ void draw(bitmap_ind16 &bitmap, const rectangle &cliprect, int y_offs, int palette_offs, int type, int road_trans, bitmap_ind8 &priority_bitmap, u8 low_priority, u8 high_priority, u8 pmask = 0xff);
protected:
// device-level overrides
@@ -20,8 +20,8 @@ protected:
private:
// internal state
- std::vector<uint16_t> m_ram;
- required_region_ptr<uint16_t> m_roadgfx;
+ std::vector<u16> m_ram;
+ required_region_ptr<u16> m_roadgfx;
};
DECLARE_DEVICE_TYPE(TC0150ROD, tc0150rod_device)