Previous 199869 Revisions Next

r26020 Wednesday 6th November, 2013 at 15:44:00 UTC by Osso
Fix compiling problems. (nw)
[src/emu/sound]nes_apu.c nes_defs.h

trunk/src/emu/sound/nes_defs.h
r26019r26020
100100         }
101101         vbl_length =0;
102102         freq = 0;
103         phaseacc = 0.0d;
104         output_vol = 0.0d;
105         env_phase = 0.0d;
106         sweep_phase = 0.0d;
103         phaseacc = 0.0;
104         output_vol = 0.0;
105         env_phase = 0.0;
106         sweep_phase = 0.0;
107107         adder = 0;
108108         env_vol = 0;
109109         enabled = false;
r26019r26020
133133         linear_length =0;
134134         vbl_length =0;
135135         write_latency = 0;
136         phaseacc = 0.0d;
137         output_vol = 0.0d;
136         phaseacc = 0.0;
137         output_vol = 0.0;
138138         adder = 0;
139139         counter_started = false;
140140         enabled = false;
r26019r26020
162162         }
163163         cur_pos =0;
164164         vbl_length =0;
165         phaseacc = 0.0d;
166         output_vol = 0.0d;
167         env_phase = 0.0d;
165         phaseacc = 0.0;
166         output_vol = 0.0;
167         env_phase = 0.0;
168168         env_vol = 0;
169169         enabled = false;
170170      }
r26019r26020
191191      address = 0;
192192      length = 0;
193193      bits_left = 0;
194      phaseacc = 0.0d;
195      output_vol = 0.0d;
194      phaseacc = 0.0;
195      output_vol = 0.0;
196196      cur_byte = 0;
197197      enabled = false;
198198      irq_occurred = false;
199199      memory = NULL;
200      vol = '\u0000';
200      vol = NULL;
201201      }
202202     
203203   uint8 regs[4];
trunk/src/emu/sound/nes_apu.c
r26019r26020
104104nesapu_device::nesapu_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
105105   : device_t(mconfig, NES_APU, "N2A03 APU", tag, owner, clock, "nesapu", __FILE__),
106106      device_sound_interface(mconfig, *this),
107      m_apu_incsize(0.0d),
107      m_apu_incsize(0.0),
108108      m_samps_per_sync(0),
109109      m_buffer_size(0),
110110      m_real_rate(0),

Previous 199869 Revisions Next


© 1997-2024 The MAME Team