summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/megacd.h
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2015-04-12 22:53:48 +0200
committer Olivier Galibert <galibert@pobox.com>2015-04-14 19:58:17 +0200
commit278cf84e5503d1829e837e21dc8c238bc8cab577 (patch)
tree5d1f529f01fdfe3615879d3482bc9cf8294ec5d7 /src/mess/machine/megacd.h
parent75e8861950d520e83740b7b5747735f0286df145 (diff)
Replace dynamic_array with std::vector [O. Galibert]
Diffstat (limited to 'src/mess/machine/megacd.h')
-rw-r--r--src/mess/machine/megacd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/megacd.h b/src/mess/machine/megacd.h
index 92a9785c63e..a17811b9842 100644
--- a/src/mess/machine/megacd.h
+++ b/src/mess/machine/megacd.h
@@ -56,7 +56,7 @@ public:
required_shared_ptr<UINT16> m_font_bits;
// can't use a memshare because it's 8-bit RAM in a 16-bit address space
- dynamic_array<UINT8> m_backupram;
+ std::vector<UINT8> m_backupram;
UINT8 m_font_color;