Turning Off Sound In Gpsp


Hit Volume Down very lightly. You may need to press it a few times as the input is very fast.

I don't think it makes too much difference in speed though.
 
hi, you do get a bit of a speed up if you patch it like this...
Code:
main.c
(using line no.s from version 3)
change line 283
from
if (gbc_sound_update)
to
if(gbc_sound_update && (sound_on == 1))
and 375 from
update_gbc_sound(cpu_ticks);
to
if (sound_on == 1) update_gbc_sound(cpu_ticks);

it bypasses a big old chunk of code when sound is muted this way.

edited for more info
 
poddy posted on Dec 29 2006 at 04:08 AM said:
hi, you do get a bit of a speed up if you patch it like this...
Code:
main.c
(using line no.s from version 3)
change line 283
from
if (gbc_sound_update)
to
if(gbc_sound_update && (sound_on == 1))
and 375 from
update_gbc_sound(cpu_ticks);
to
if (sound_on == 1) update_gbc_sound(cpu_ticks);

it bypasses a big old chunk of code when sound is muted this way.

edited for more info

how do i do that?
me=not coder :(
 
Last edited by a moderator:
Back
Top