diff options
Diffstat (limited to 'src/devices/machine/ram.h')
-rw-r--r-- | src/devices/machine/ram.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/ram.h b/src/devices/machine/ram.h index 73e7430a6ce..73a62b61f8d 100644 --- a/src/devices/machine/ram.h +++ b/src/devices/machine/ram.h @@ -77,7 +77,7 @@ protected: private: // device state UINT32 m_size; - dynamic_buffer m_pointer; + std::vector<UINT8> m_pointer; // device config const char *m_default_size; |