diff options
Diffstat (limited to 'src/emu/recording.h')
-rw-r--r-- | src/emu/recording.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/recording.h b/src/emu/recording.h index 614b591d27a..b805db27757 100644 --- a/src/emu/recording.h +++ b/src/emu/recording.h @@ -47,10 +47,10 @@ public: virtual ~movie_recording(); // accessors - 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; } - attotime next_frame_time() const { return m_next_frame_time; } + 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; } + attotime next_frame_time() const { return m_next_frame_time; } // methods bool append_video_frame(bitmap_rgb32 &bitmap, attotime curtime); @@ -75,10 +75,10 @@ protected: int current_frame() const { return m_frame; } private: - screen_device * m_screen; // screen associated with this movie (can be nullptr) - attotime m_frame_period; // time of frame period - attotime m_next_frame_time; // time of next frame - int m_frame; // current movie frame number + screen_device * m_screen; // screen associated with this movie (can be nullptr) + attotime m_frame_period; // time of frame period + attotime m_next_frame_time; // time of next frame + int m_frame; // current movie frame number }; |