summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-06-27 17:47:22 -0400
committer AJR <ajrhacker@users.noreply.github.com>2018-06-27 17:47:22 -0400
commit897192e3f150c8315041d4114dac55946b338693 (patch)
treeb50b3c72b26ab64cec3b5282a82ed1df4b9d28ef
parentd9bc46556f0ad968268fa0af83b7f24b59f9b3e2 (diff)
Fix Clang build again [-Werror,-Wunused-private-field] (nw)
-rw-r--r--src/mame/drivers/halleys.cpp3
-rw-r--r--src/mame/drivers/i7000.cpp1
2 files changed, 0 insertions, 4 deletions
diff --git a/src/mame/drivers/halleys.cpp b/src/mame/drivers/halleys.cpp
index 38834ecf57f..00bff4219f0 100644
--- a/src/mame/drivers/halleys.cpp
+++ b/src/mame/drivers/halleys.cpp
@@ -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);
diff --git a/src/mame/drivers/i7000.cpp b/src/mame/drivers/i7000.cpp
index 840650ed797..49983802f63 100644
--- a/src/mame/drivers/i7000.cpp
+++ b/src/mame/drivers/i7000.cpp
@@ -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;