summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/namcos22.h
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2020-10-25 12:37:48 +0100
committer hap <happppp@users.noreply.github.com>2020-10-25 12:38:03 +0100
commit16f71a3a8ee0e5969c984be3164a6f5171d77abe (patch)
tree5ab10f53db15f51e6be8c46995571217ce7a5662 /src/mame/includes/namcos22.h
parent84fbb292659ebcafd2e62d5d1a1093f5bb5679ce (diff)
namcos22: remove 1 usage of auto_alloc (2 remaining)
Diffstat (limited to 'src/mame/includes/namcos22.h')
-rw-r--r--src/mame/includes/namcos22.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/includes/namcos22.h b/src/mame/includes/namcos22.h
index 7e2998bd7e4..bd56d536e18 100644
--- a/src/mame/includes/namcos22.h
+++ b/src/mame/includes/namcos22.h
@@ -466,7 +466,7 @@ protected:
unsigned m_LitSurfaceCount;
unsigned m_LitSurfaceIndex;
int m_pointrom_size;
- s32 *m_pointrom;
+ std::unique_ptr<s32[]> m_pointrom;
std::unique_ptr<u8[]> m_dirtypal;
std::unique_ptr<bitmap_ind16> m_mix_bitmap;
tilemap_t *m_bgtilemap;