summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/s2636.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2014-02-20 18:11:00 +0000
committer Aaron Giles <aaron@aarongiles.com>2014-02-20 18:11:00 +0000
commitdd15b719a3c01392a36eb3e5710e6cf0d15b6770 (patch)
tree75954efc8ae4a2073faaacca7298661366b5bf2f /src/emu/machine/s2636.h
parent9fa82ef4c3d247a7279cea7f423697524abdbd6b (diff)
Another round of auto_alloc_array conversions.
Some minor enhancements to dynamic_array, including clearing to specific values and expanding and clearing newly allocated values.
Diffstat (limited to 'src/emu/machine/s2636.h')
-rw-r--r--src/emu/machine/s2636.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/emu/machine/s2636.h b/src/emu/machine/s2636.h
index 112fe5f9913..67d59650af6 100644
--- a/src/emu/machine/s2636.h
+++ b/src/emu/machine/s2636.h
@@ -60,9 +60,9 @@ protected:
private:
// internal state
- UINT8 *m_work_ram;
- bitmap_ind16 *m_bitmap;
- bitmap_ind16 *m_collision_bitmap;
+ dynamic_buffer m_work_ram;
+ bitmap_ind16 m_bitmap;
+ bitmap_ind16 m_collision_bitmap;
sound_stream *m_channel;
UINT8 m_reg[1];