summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/mips/r3000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/cpu/mips/r3000.h')
-rw-r--r--src/emu/cpu/mips/r3000.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mips/r3000.h b/src/emu/cpu/mips/r3000.h
index d0ed29db2ae..cfcc4e1e0f1 100644
--- a/src/emu/cpu/mips/r3000.h
+++ b/src/emu/cpu/mips/r3000.h
@@ -249,8 +249,8 @@ protected:
// cache memory
UINT32 * m_cache;
- dynamic_array<UINT32> m_icache;
- dynamic_array<UINT32> m_dcache;
+ std::vector<UINT32> m_icache;
+ std::vector<UINT32> m_dcache;
size_t m_cache_size;
size_t m_icache_size;
size_t m_dcache_size;