tlc34076: m_pens is unnecessary now (nw)

This commit is contained in:
AJR 2018-05-13 17:49:22 -04:00
parent 7db49620b2
commit 45bf7b8f8c
2 changed files with 0 additions and 3 deletions

View File

@ -59,10 +59,8 @@ void tlc34076_device::device_start()
m_local_paletteram[i] = std::make_unique<uint8_t[]>(0x100);
save_pointer(NAME(m_local_paletteram[i].get()), 0x100, i);
}
m_pens = std::make_unique<rgb_t[]>(0x100);
save_item(NAME(m_regs));
save_pointer(NAME(m_pens.get()), 0x100);
save_item(NAME(m_writeindex));
save_item(NAME(m_readindex));

View File

@ -57,7 +57,6 @@ private:
uint8_t m_writeindex;
uint8_t m_readindex;
uint8_t m_dacbits;
std::unique_ptr<rgb_t[]> m_pens;
};