diff options
author | 2015-08-20 20:09:07 +0200 | |
---|---|---|
committer | 2015-08-20 20:10:33 +0200 | |
commit | e43612a8d516de73d35ccee1f965436201b7216f (patch) | |
tree | 66b5c359219814ac36307996f3d66bde9c50cf47 /src/emu/sound/samples.h | |
parent | f09606c87b4377cfea71da9a4ff5991b7e458fea (diff) |
Floppy sounds WIP. See comments in floppy.c.
Diffstat (limited to 'src/emu/sound/samples.h')
-rw-r--r-- | src/emu/sound/samples.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/emu/sound/samples.h b/src/emu/sound/samples.h index 45770e127ed..24bb4541766 100644 --- a/src/emu/sound/samples.h +++ b/src/emu/sound/samples.h @@ -92,7 +92,6 @@ protected: // device_sound_interface overrides virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples); -private: // internal classes struct channel_t { @@ -111,7 +110,7 @@ private: // internal helpers static bool read_wav_sample(emu_file &file, sample_t &sample); static bool read_flac_sample(emu_file &file, sample_t &sample); - void load_samples(); + bool load_samples(); // internal state std::vector<channel_t> m_channel; |