summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/macpds/pds_tpdfpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/macpds/pds_tpdfpd.h')
-rw-r--r--src/devices/bus/macpds/pds_tpdfpd.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/macpds/pds_tpdfpd.h b/src/devices/bus/macpds/pds_tpdfpd.h
index 44878aa8e82..c697305c845 100644
--- a/src/devices/bus/macpds/pds_tpdfpd.h
+++ b/src/devices/bus/macpds/pds_tpdfpd.h
@@ -21,14 +21,14 @@ class macpds_sedisplay_device :
{
public:
// construction/destruction
- macpds_sedisplay_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- macpds_sedisplay_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
+ macpds_sedisplay_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
+ macpds_sedisplay_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, uint32_t clock, const char *shortname, const char *source);
// optional information overrides
virtual machine_config_constructor device_mconfig_additions() const override;
virtual const tiny_rom_entry *device_rom_region() const override;
- UINT32 screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
+ uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
protected:
// device-level overrides
virtual void device_start() override;
@@ -41,9 +41,9 @@ protected:
DECLARE_WRITE16_MEMBER(ramdac_w);
public:
- std::unique_ptr<UINT8[]> m_vram;
- UINT32 m_vbl_disable;
- UINT32 m_palette[256], m_colors[3], m_count, m_clutoffs;
+ std::unique_ptr<uint8_t[]> m_vram;
+ uint32_t m_vbl_disable;
+ uint32_t m_palette[256], m_colors[3], m_count, m_clutoffs;
emu_timer *m_timer;
std::string m_assembled_tag;
};