diff options
Diffstat (limited to 'src/devices/bus/m5')
-rw-r--r-- | src/devices/bus/m5/slot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/m5/slot.h b/src/devices/bus/m5/slot.h index 27345e34a99..a31f89f0a49 100644 --- a/src/devices/bus/m5/slot.h +++ b/src/devices/bus/m5/slot.h @@ -51,7 +51,7 @@ protected: // internal state UINT8 *m_rom; UINT32 m_rom_size; - dynamic_buffer m_ram; + std::vector<UINT8> m_ram; }; |