Update libgme to Blargg's Game_Music_Emu 0.6-pre.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30397 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Andree Buschmann 2011-08-31 19:19:49 +00:00
parent d089e10403
commit 13cbade08a
68 changed files with 4113 additions and 4893 deletions

View file

@ -83,7 +83,6 @@ void run_square( struct Nes_Vrc6_Apu* this, struct Vrc6_Osc* osc, blip_time_t en
struct Blip_Buffer* output = osc->output;
if ( !output )
return;
Blip_set_modified( output );
int volume = osc->regs [0] & 15;
if ( !(osc->regs [2] & 0x80) )
@ -96,6 +95,7 @@ void run_square( struct Nes_Vrc6_Apu* this, struct Vrc6_Osc* osc, blip_time_t en
if ( delta )
{
osc->last_amp += delta;
Blip_set_modified( output );
Synth_offset( &this->square_synth, time, delta, output );
}