~sergio-br2/gme/trunk

« back to all changes in this revision

Viewing changes to gme/gme.cpp

  • Committer: gblargg
  • Date: 2009-08-01 14:50:17 UTC
  • Revision ID: git-v1:4618fc48662773c847b023fff329254e52b06c97
Added gme_enable_accuracy() and implemented for SPC.

Show diffs side-by-side

added added

removed removed

Lines of Context:
343
343
void      gme_set_tempo      ( Music_Emu* me, double t )            { me->set_tempo( t ); }
344
344
void      gme_mute_voice     ( Music_Emu* me, int index, int mute ) { me->mute_voice( index, mute != 0 ); }
345
345
void      gme_mute_voices    ( Music_Emu* me, int mask )            { me->mute_voices( mask ); }
 
346
void      gme_enable_accuracy( Music_Emu* me, int enabled )         { me->enable_accuracy( enabled ); }
346
347
 
347
348
void      gme_set_equalizer  ( Music_Emu* me, gme_equalizer_t const* eq )
348
349
{