Changeset 2467:3c7cd2e6698a in roaraudio


Ignore:
Timestamp:
08/22/09 02:01:44 (15 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

added stub ssynth_update()

Location:
roard
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • roard/include/ssynth.h

    r2463 r2467  
    5656  struct roar_synth_state synth; 
    5757  struct roar_fader_state fader; 
     58  struct roar_buffer      buf; 
    5859 } notes[SSYNTH_NOTES_MAX]; 
    5960} g_ssynth; 
     
    6364int ssynth_init (void); 
    6465int ssynth_free (void); 
     66 
     67int ssynth_update (void); 
    6568 
    6669int ssynth_note_new(struct roar_note_octave * note, char vv); 
  • roard/loop.c

    r2410 r2467  
    112112 
    113113  midi_reinit(); 
     114  ssynth_update(); 
    114115  light_reinit(); 
    115116 
  • roard/ssynth.c

    r2465 r2467  
    8989 return streams_delete(g_ssynth.stream); 
    9090} 
     91 
     92int ssynth_update (void) { 
     93 return -1; 
     94} 
     95 
    9196 
    9297int ssynth_note_new(struct roar_note_octave * note, char vv) { 
Note: See TracChangeset for help on using the changeset viewer.