diff options
Diffstat (limited to 'src/emu/recording.h')
-rw-r--r-- | src/emu/recording.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/emu/recording.h b/src/emu/recording.h index 0a26c5c7db8..98798063a73 100644 --- a/src/emu/recording.h +++ b/src/emu/recording.h @@ -50,6 +50,7 @@ public: screen_device *screen() { return m_screen; } attotime frame_period() { return m_frame_period; } void set_next_frame_time(attotime time) { m_next_frame_time = time; } + void set_channel_count(int channels) { m_channels = channels; } attotime next_frame_time() const { return m_next_frame_time; } // methods @@ -63,6 +64,8 @@ public: static const char *format_file_extension(format fmt); protected: + int m_channels; // count of audio channels + // ctor movie_recording(screen_device *screen); movie_recording(const movie_recording &) = delete; |