summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/meters.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/meters.h')
-rw-r--r--src/mame/machine/meters.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/machine/meters.h b/src/mame/machine/meters.h
index 99e440d8c39..3233789a481 100644
--- a/src/mame/machine/meters.h
+++ b/src/mame/machine/meters.h
@@ -26,7 +26,7 @@
class meters_device : public device_t
{
public:
- meters_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ meters_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
~meters_device() {}
static void static_set_number_meters(device_t &device, int number) { downcast<meters_device &>(device).m_number_mtr = number; }
@@ -35,9 +35,9 @@ public:
int GetActivity(int id);
int GetNumberMeters(void); // currently unused
- void Setcount(int id, INT32 count); // currently unused
- INT32 Getcount(int id); // currently unused
- void ReactTime(int id, INT32 cycles); // currently unused
+ void Setcount(int id, int32_t count); // currently unused
+ int32_t Getcount(int id); // currently unused
+ void ReactTime(int id, int32_t cycles); // currently unused
protected:
// device-level overrides
@@ -50,8 +50,8 @@ private:
struct meter_info
{
bool on; // Activity of reel
- INT32 reacttime;
- INT32 count; // mechmeter value
+ int32_t reacttime;
+ int32_t count; // mechmeter value
bool state; // state 0/1
emu_timer *meter_timer;
};