From 32868b8e2ae103dd1134ec0596f0966762ac401a Mon Sep 17 00:00:00 2001 From: Vas Crabb Date: Sat, 26 Oct 2019 10:40:50 +1100 Subject: srcclean (nw) --- src/emu/render.h | 2 +- src/emu/screen.h | 4 ++-- src/emu/video.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) (limited to 'src/emu') diff --git a/src/emu/render.h b/src/emu/render.h index b9706907aed..572b29e0933 100644 --- a/src/emu/render.h +++ b/src/emu/render.h @@ -218,7 +218,7 @@ struct render_texinfo u64 unique_id; // unique identifier to pass to osd u64 old_id; // previously allocated id, if applicable const rgb_t * palette; // palette for PALETTE16 textures, bcg lookup table for RGB32/YUY16 - u32 palette_length; + u32 palette_length; }; diff --git a/src/emu/screen.h b/src/emu/screen.h index 426f3be2e08..c43c5fe7278 100644 --- a/src/emu/screen.h +++ b/src/emu/screen.h @@ -486,13 +486,13 @@ private: int m_width; // current width (HTOTAL) int m_height; // current height (VTOTAL) rectangle m_visarea; // current visible area (HBLANK end/start, VBLANK end/start) - std::vector m_scan_widths; // current width, in samples, of each individual scanline + std::vector m_scan_widths; // current width, in samples, of each individual scanline // textures and bitmaps texture_format m_texformat; // texture format render_texture * m_texture[2]; // 2x textures for the screen bitmap screen_bitmap m_bitmap[2]; // 2x bitmaps for rendering - std::vector m_scan_bitmaps[2]; // 2x bitmaps for each individual scanline + std::vector m_scan_bitmaps[2]; // 2x bitmaps for each individual scanline bitmap_ind8 m_priority; // priority bitmap bitmap_ind64 m_burnin; // burn-in bitmap u8 m_curbitmap; // current bitmap index diff --git a/src/emu/video.cpp b/src/emu/video.cpp index bac84788307..d8bea693005 100644 --- a/src/emu/video.cpp +++ b/src/emu/video.cpp @@ -166,7 +166,7 @@ video_manager::video_manager(running_machine &machine) // extract snap resolution if present if (sscanf(machine.options().snap_size(), "%dx%d", &m_snap_width, &m_snap_height) != 2) m_snap_width = m_snap_height = 0; - + // if no screens, create a periodic timer to drive updates if (no_screens) { -- cgit v1.2.3