diff options
Diffstat (limited to 'src/devices/machine/dp8390.cpp')
-rw-r--r-- | src/devices/machine/dp8390.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/dp8390.cpp b/src/devices/machine/dp8390.cpp index 52e66168322..32d41d73896 100644 --- a/src/devices/machine/dp8390.cpp +++ b/src/devices/machine/dp8390.cpp @@ -64,7 +64,7 @@ void dp8390_device::check_dma_complete() { } void dp8390_device::do_tx() { - dynamic_buffer buf; + std::vector<UINT8> buf; int i; UINT32 high16 = (m_regs.dcr & 4)?m_regs.rsar<<16:0; if(m_reset) return; |