Browse Source

Mixer: Clean up some compiler warnings.

tags/non-daw-v1.1.0
Jonathan Moore Liles 15 years ago
parent
commit
c06388b2f1
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      Mixer/Engine/Engine.C

+ 5
- 4
Mixer/Engine/Engine.C View File

@@ -65,26 +65,27 @@ Engine::freewheel ( bool starting )


/* THREAD: RT (non-RT) */ /* THREAD: RT (non-RT) */
int int
Engine::buffer_size ( nframes_t nframes )
Engine::buffer_size ( nframes_t )
{ {
// timeline->resize_buffers( nframes ); // timeline->resize_buffers( nframes );


return 0; return 0;
} }


int Engine::sync ( jack_transport_state_t state, jack_position_t *pos )
int Engine::sync ( jack_transport_state_t, jack_position_t * )
{ {
return 0;
} }


void void
Engine::timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos, int new_pos )
Engine::timebase ( jack_transport_state_t, jack_nframes_t, jack_position_t *, int )
{ {




} }


void void
Engine::timebase ( jack_transport_state_t state, jack_nframes_t nframes, jack_position_t *pos )
Engine::timebase ( jack_transport_state_t, jack_nframes_t, jack_position_t * )
{ {


} }


Loading…
Cancel
Save