diff options
| author | 2025-02-24 19:45:35 +0100 | |
|---|---|---|
| committer | 2025-02-24 19:45:57 +0100 | |
| commit | 57f6141e4197ccd436bf91c19d7aac083e2924cf (patch) | |
| tree | 7c0ea20c7f7dbbe913135f342f3f27e0cef1aa7c /src/emu/screen.cpp | |
| parent | 6783d93bd3d8609fa97e5887b81a90c2acf49979 (diff) | |
ddragon3_v: small cleanup to source code spacing
Diffstat (limited to 'src/emu/screen.cpp')
| -rw-r--r-- | src/emu/screen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/screen.cpp b/src/emu/screen.cpp index f2fbb290303..8082b7ddad2 100644 --- a/src/emu/screen.cpp +++ b/src/emu/screen.cpp @@ -1172,7 +1172,7 @@ bool screen_device::update_partial(int scanline) } // skip if we already rendered this frame - // this can happen if the executing cpu timeslice is in the previous frame while scanline 0 already started + // this can happen if a cpu timeslice that called update_partial is in the previous frame while scanline 0 already started if (m_last_partial_scan == 0 && m_last_partial_reset > machine().time()) { LOG_PARTIAL_UPDATES(("skipped because frame was already rendered\n")); @@ -1290,7 +1290,7 @@ void screen_device::update_now() } // skip if we already rendered this frame - // this can happen if the executing cpu timeslice is in the previous frame while scanline 0 already started + // this can happen if a cpu timeslice that called update_now is in the previous frame while scanline 0 already started if (m_last_partial_scan == 0 && m_partial_scan_hpos == 0 && m_last_partial_reset > machine().time()) { LOG_PARTIAL_UPDATES(("skipped because frame was already rendered\n")); |
