summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/recording.h
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-04-26 12:04:54 +1000
committer Vas Crabb <vas@vastheman.com>2020-04-26 12:04:54 +1000
commit8a923f936122d6fb094af453286bfc15524fd588 (patch)
treeb9b720b1d6373b56dea3abcd5ffb18444f876b44 /src/emu/recording.h
parent2305442f6a5e6ec3662533034f0118c1938eabc7 (diff)
srcclean and manual cleanup (nw)
Diffstat (limited to 'src/emu/recording.h')
-rw-r--r--src/emu/recording.h16
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
};