Whack. Mole. Assembly required. (no whatsnew)

This commit is contained in:
R. Belmont 2010-06-17 00:40:12 +00:00
parent a1b0bd61b7
commit e85bd2ca71

View File

@ -189,7 +189,7 @@ static void sound_exit(running_machine *machine)
static void route_sound(running_machine *machine) static void route_sound(running_machine *machine)
{ {
/* iterate again over all the sound chips */ /* iterate again over all the sound chips */
device_sound_interface *sound; device_sound_interface *sound = NULL;
for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound)) for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound))
{ {
int numoutputs = stream_get_device_outputs(*sound); int numoutputs = stream_get_device_outputs(*sound);
@ -230,7 +230,7 @@ static void route_sound(running_machine *machine)
static void sound_reset(running_machine *machine) static void sound_reset(running_machine *machine)
{ {
device_sound_interface *sound; device_sound_interface *sound = NULL;
/* reset all the sound chips */ /* reset all the sound chips */
for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound)) for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound))
@ -553,7 +553,7 @@ void speaker_device::device_start()
{ {
// scan all the sound devices and count our inputs // scan all the sound devices and count our inputs
int inputs = 0; int inputs = 0;
device_sound_interface *sound; device_sound_interface *sound = NULL;
for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound)) for (bool gotone = machine->devicelist.first(sound); gotone; gotone = sound->next(sound))
{ {
// scan each route on the device // scan each route on the device