mirror of
https://github.com/holub/mame
synced 2025-07-04 09:28:51 +03:00
Fix build by removing unused variables (nw)
This commit is contained in:
parent
fe8d56bb6e
commit
e415d84fab
@ -423,7 +423,7 @@ abc77_device::abc77_device(const machine_config &mconfig, device_type type, cons
|
||||
m_dsw(*this, "DSW"),
|
||||
m_txd(1), m_keylatch(0),
|
||||
m_keydown(1),
|
||||
m_clock(0), m_hys(0), m_reset(0),
|
||||
m_clock(0), m_hys(0),
|
||||
m_stb(1), m_j3(0), m_serial_timer(nullptr), m_reset_timer(nullptr)
|
||||
{
|
||||
}
|
||||
|
@ -72,7 +72,6 @@ private:
|
||||
int m_keydown; // key down
|
||||
int m_clock; // transmit clock
|
||||
int m_hys; // hysteresis
|
||||
int m_reset; // reset
|
||||
int m_stb; // strobe
|
||||
uint8_t m_j3;
|
||||
|
||||
|
@ -39,7 +39,6 @@ sns_rom_sgb_device::sns_rom_sgb_device(const machine_config &mconfig, device_typ
|
||||
m_joy3(0),
|
||||
m_joy4(0),
|
||||
m_vram_offs(0),
|
||||
m_mlt_req(0),
|
||||
m_lcd_row(0),
|
||||
m_packetsize(0),
|
||||
m_bios_disabled(false)
|
||||
|
@ -68,7 +68,6 @@ private:
|
||||
uint8_t m_joy1, m_joy2, m_joy3, m_joy4;
|
||||
uint8_t m_joy_pckt[16];
|
||||
uint16_t m_vram_offs;
|
||||
uint8_t m_mlt_req;
|
||||
|
||||
uint32_t m_lcd_buffer[4 * 160 * 8];
|
||||
uint16_t m_lcd_output[320];
|
||||
|
Loading…
Reference in New Issue
Block a user