summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/snkwave.h
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-10-22 13:13:17 +0200
commitddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch)
treea70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/devices/sound/snkwave.h
parent333bff8de64dfaeb98134000412796b4fdef970b (diff)
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8 also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/devices/sound/snkwave.h')
-rw-r--r--src/devices/sound/snkwave.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/snkwave.h b/src/devices/sound/snkwave.h
index 07c45c96134..f825cbab2b4 100644
--- a/src/devices/sound/snkwave.h
+++ b/src/devices/sound/snkwave.h
@@ -28,7 +28,7 @@ class snkwave_device : public device_t,
public device_sound_interface
{
public:
- snkwave_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
+ snkwave_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
~snkwave_device() { }
protected:
@@ -42,7 +42,7 @@ public:
DECLARE_WRITE8_MEMBER( snkwave_w );
private:
- void update_waveform(unsigned int offset, UINT8 data);
+ void update_waveform(unsigned int offset, uint8_t data);
private:
sound_stream *m_stream;
@@ -50,12 +50,12 @@ private:
int m_sample_rate;
// data about the sound system
- UINT32 m_frequency;
- UINT32 m_counter;
+ uint32_t m_frequency;
+ uint32_t m_counter;
int m_waveform_position;
// decoded waveform table
- INT16 m_waveform[SNKWAVE_WAVEFORM_LENGTH];
+ int16_t m_waveform[SNKWAVE_WAVEFORM_LENGTH];
};
extern const device_type SNKWAVE;