summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nes/act53.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nes/act53.h')
-rw-r--r--src/devices/bus/nes/act53.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/nes/act53.h b/src/devices/bus/nes/act53.h
index e3b395ce1cd..3d9c8d53155 100644
--- a/src/devices/bus/nes/act53.h
+++ b/src/devices/bus/nes/act53.h
@@ -12,7 +12,7 @@ class nes_action53_device : public nes_nrom_device
{
public:
// construction/destruction
- nes_action53_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ nes_action53_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// device-level overrides
virtual void device_start() override;
@@ -24,8 +24,8 @@ public:
private:
void update_prg();
void update_mirr();
- UINT8 m_sel;
- UINT8 m_reg[4];
+ uint8_t m_sel;
+ uint8_t m_reg[4];
};