Skip to content

Commit

Permalink
Further fixing Multi Buffer formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
briansrls authored and rkitover committed Aug 10, 2020
1 parent 1e56930 commit 18c2ea6
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/apu/Multi_Buffer.h
Expand Up @@ -35,11 +35,12 @@ class Multi_Buffer
};
virtual channel_t channel(int index) BLARGG_PURE(;)

// See Blip_Buffer.h
virtual blargg_err_t set_sample_rate(long rate, int msec = blip_default_length)
BLARGG_PURE(;) virtual void clock_rate(long)
BLARGG_PURE({}) virtual void bass_freq(int) BLARGG_PURE({}) virtual void clear()
BLARGG_PURE({}) long sample_rate() const;
// See Blip_Buffer.h
virtual blargg_err_t set_sample_rate(long rate, int msec = blip_default_length) BLARGG_PURE(;)
virtual void clock_rate(long) BLARGG_PURE({})
virtual void bass_freq(int) BLARGG_PURE({})
virtual void clear() BLARGG_PURE({})
long sample_rate() const;

// Length of buffer, in milliseconds
int length() const;
Expand Down

0 comments on commit 18c2ea6

Please sign in to comment.