summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/a800/a800_slot.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/a800/a800_slot.h')
-rw-r--r--src/devices/bus/a800/a800_slot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/a800/a800_slot.h b/src/devices/bus/a800/a800_slot.h
index d1cf620bdc4..cc1b6ba275c 100644
--- a/src/devices/bus/a800/a800_slot.h
+++ b/src/devices/bus/a800/a800_slot.h
@@ -72,8 +72,8 @@ protected:
// internal state
UINT8 *m_rom;
UINT32 m_rom_size;
- dynamic_buffer m_ram;
- dynamic_buffer m_nvram; // HiScore cart can save scores!
+ std::vector<UINT8> m_ram;
+ std::vector<UINT8> m_nvram; // HiScore cart can save scores!
// helpers
int m_bank_mask;
};