diff options
Diffstat (limited to 'src/emu/cpu/mips/r3000.h')
-rw-r--r-- | src/emu/cpu/mips/r3000.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/cpu/mips/r3000.h b/src/emu/cpu/mips/r3000.h index 5bdce4dcaf9..83819ace935 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; - UINT32 * m_icache; - UINT32 * m_dcache; + dynamic_array<UINT32> m_icache; + dynamic_array<UINT32> m_dcache; size_t m_cache_size; size_t m_icache_size; size_t m_dcache_size; |