disabled some unused private members (nw)

This commit is contained in:
Oliver Stöneberg 2013-07-21 11:26:46 +00:00
parent a69b7cd96b
commit 84d0254e85
4 changed files with 7 additions and 7 deletions

View File

@ -70,7 +70,7 @@ const device_type BEEZER = &device_creator<beezer_sound_device>;
beezer_sound_device::beezer_sound_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, BEEZER, "beezer SFX", tag, owner, clock, "beezer_sound", __FILE__),
device_sound_interface(mconfig, *this),
m_ptm_irq_state(0),
//m_ptm_irq_state(0),
m_sh6840_MSB_latch(0),
m_sh6840_LSB_latch(0),
m_sh6840_LFSR(0),
@ -81,8 +81,8 @@ beezer_sound_device::beezer_sound_device(const machine_config &mconfig, const ch
m_sh6840_latchwriteold(0),
m_sh6840_noiselatch1(0),
m_sh6840_noiselatch3(0),
m_stream(NULL),
m_freq_to_step(0)
m_stream(NULL)/*,
m_freq_to_step(0)*/
{
memset(m_sh6840_timer, 0, sizeof(m_sh6840_timer));
m_sh6840_volume[0] = 0;

View File

@ -89,7 +89,7 @@ private:
cpu_device *m_maincpu;
/* IRQ variable */
UINT8 m_ptm_irq_state;
//UINT8 m_ptm_irq_state;
struct sh6840_timer_channel m_sh6840_timer[3];
UINT8 m_sh6840_volume[4];
@ -107,7 +107,7 @@ private:
/* sound streaming variables */
sound_stream *m_stream;
double m_freq_to_step;
//double m_freq_to_step;
int sh6840_update_noise(int clocks);
};

View File

@ -17,7 +17,7 @@ const device_type K001604 = &device_creator<k001604_device>;
k001604_device::k001604_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, K001604, "Konami 001604", tag, owner, clock, "k001604", __FILE__),
m_screen(NULL),
//m_screen(NULL),
m_tile_ram(NULL),
m_char_ram(NULL),
m_reg(NULL)

View File

@ -37,7 +37,7 @@ protected:
virtual void device_reset();
private:
// internal state
screen_device *m_screen;
//screen_device *m_screen;
tilemap_t *m_layer_8x8[2];
tilemap_t *m_layer_roz;
int m_gfx_index[2];