Browse Source

fix typo in binary operator assigning to This->asio_sample_position in 64bit

tags/v1.0.0
Joakim Hernberg 12 years ago
parent
commit
838f9589c6
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      asio.c

+ 1
- 1
asio.c View File

@@ -1355,7 +1355,7 @@ static int process_callback(jack_nframes_t nframes, void *arg)

#ifdef _WIN64
This->asio_sample_position += nframes;
This->asio_sample_position & 0xffffffff; /* make 32bit since JACK's position is 32bit anyways */
This->asio_sample_position &= 0xffffffff; /* make 32bit since JACK's position is 32bit anyways */
This->asio_time_stamp = timeGetTime() * 1000000;
#else
This->asio_sample_position.lo += nframes;


Loading…
Cancel
Save