mirror of
https://github.com/holub/mame
synced 2025-04-22 00:11:58 +03:00
Fix Clang build again [-Werror,-Wunused-private-field] (nw)
This commit is contained in:
parent
d9bc46556f
commit
897192e3f1
@ -193,7 +193,6 @@ Video sync 6 F Video sync Post 6 F Post
|
||||
|
||||
#define MAX_LAYERS 6
|
||||
#define MAX_SPRITES 256
|
||||
#define MAX_SOUNDS 16
|
||||
|
||||
#define SP_2BACK 0x100
|
||||
#define SP_ALPHA 0x200
|
||||
@ -235,7 +234,6 @@ public:
|
||||
|
||||
private:
|
||||
uint16_t *m_render_layer[MAX_LAYERS];
|
||||
uint8_t m_sound_fifo[MAX_SOUNDS];
|
||||
uint8_t *m_gfx_plane02;
|
||||
uint8_t *m_gfx_plane13;
|
||||
std::unique_ptr<uint8_t[]> m_collision_list;
|
||||
@ -262,7 +260,6 @@ private:
|
||||
int m_firq_level;
|
||||
emu_timer *m_blitter_reset_timer;
|
||||
offs_t m_collision_detection;
|
||||
int m_latch_delay;
|
||||
std::vector<uint8_t> m_paletteram;
|
||||
|
||||
DECLARE_WRITE8_MEMBER(bgtile_w);
|
||||
|
@ -80,7 +80,6 @@ private:
|
||||
required_device<gfxdecode_device> m_gfxdecode;
|
||||
required_shared_ptr<uint8_t> m_videoram;
|
||||
uint32_t screen_update_i7000(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
|
||||
uint8_t *m_char_rom;
|
||||
uint8_t m_row;
|
||||
tilemap_t *m_bg_tilemap;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user