diff options
author | 2021-11-21 11:03:27 -0500 | |
---|---|---|
committer | 2021-11-21 11:03:27 -0500 | |
commit | 8c345c3cb3b00846d8669c9f8fefd17aa0323695 (patch) | |
tree | 7d25b8e7510fa44d59ac27c24234d0393b0026ce | |
parent | 3137478c090584cd9c014e9638278ca83fa8b51d (diff) |
screen.cpp: Fix old editing errors in comments
-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 e3ca74869f9..5a9c055bbbb 100644 --- a/src/emu/screen.cpp +++ b/src/emu/screen.cpp @@ -1108,7 +1108,7 @@ void screen_device::realloc_screen_bitmaps() s32 effwidth = std::max(per_scanline ? m_max_width : m_width, m_visarea.right() + 1); s32 effheight = std::max(m_height, m_visarea.bottom() + 1); - // reize all registered screen bitmaps + // resize all registered screen bitmaps for (auto &item : m_auto_bitmap_list) item->m_bitmap.resize(effwidth, effheight); @@ -1870,7 +1870,7 @@ void screen_device::finalize_burnin() m_visarea.top() * m_burnin.height() / m_height, m_visarea.bottom() * m_burnin.height() / m_height); - // wrap a bitmap around the memregion we care about + // wrap a bitmap around the subregion we care about bitmap_argb32 finalmap(scaledvis.width(), scaledvis.height()); int srcwidth = m_burnin.width(); int srcheight = m_burnin.height(); |