mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
disabled some unused private members (nw)
This commit is contained in:
parent
a69b7cd96b
commit
84d0254e85
@ -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;
|
||||
|
@ -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);
|
||||
};
|
||||
|
@ -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)
|
||||
|
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user