Previous 199869 Revisions Next

r32928 Friday 24th October, 2014 at 13:48:51 UTC by Oliver Stöneberg
fixed usage of initialized members in dave_device() (nw)

also fixes signed integer overflow in dave_device::sound_stream_update()
with ep128 and others
[src/mess/audio]dave.c

trunk/src/mess/audio/dave.c
r241439r241440
9696   save_item(NAME(m_level_and));
9797   save_item(NAME(m_mame_volumes));
9898
99   for (int i = 0; i < 3; i++)
100   {
101      m_period[i] = (STEP * machine().sample_rate()) / 125000;
99   for (int i = 0; i < ARRAY_LENGTH(m_period); i++)
100      m_period[i] = (STEP * machine().sample_rate()) / 125000;   
101
102   for (int i = 0; i < ARRAY_LENGTH(m_count); i++)
102103      m_count[i] = (STEP * machine().sample_rate()) / 125000;
104
105   for (int i = 0; i < ARRAY_LENGTH(m_level); i++)
103106      m_level[i] = 0;
104   }
105107
108   for (int i = 0; i < ARRAY_LENGTH(m_level_or); i++)
109      m_level_or[i] = 0;
110
111   for (int i = 0; i < ARRAY_LENGTH(m_level_and); i++)
112      m_level_and[i] = 0;
113
114   for (int i = 0; i < ARRAY_LENGTH(m_mame_volumes); i++)
115      m_mame_volumes[i] = 0;
116
106117   /* dave has 3 tone channels and 1 noise channel.
107118    the volumes are mixed internally and output as left and right volume */
108119


Previous 199869 Revisions Next


© 1997-2024 The MAME Team