diff options
author | 2010-12-31 22:59:44 +0000 | |
---|---|---|
committer | 2010-12-31 22:59:44 +0000 | |
commit | 996e1c365c6b15adc1870027c2ba3ecaaf82cb36 (patch) | |
tree | c6213441d166de5e07df10149dbae6e7aad73636 /src/emu/sound/aicalfo.c | |
parent | 3b41606ca0c02056604a55a7b1f5165e80bc11fb (diff) |
mame_rand() -> machine->rand()
Diffstat (limited to 'src/emu/sound/aicalfo.c')
-rw-r--r-- | src/emu/sound/aicalfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/aicalfo.c b/src/emu/sound/aicalfo.c index a2ca1fedeb6..d6b6436f9cd 100644 --- a/src/emu/sound/aicalfo.c +++ b/src/emu/sound/aicalfo.c @@ -82,7 +82,7 @@ static void AICALFO_Init(running_machine *machine) //noise //a=lfo_noise[i]; - a=mame_rand(machine)&0xff; + a=machine->rand()&0xff; p=128-a; ALFO_NOI[i]=a; PLFO_NOI[i]=p; |