summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
author firewave <firewave@users.noreply.github.com>2018-01-07 01:30:54 +0100
committer firewave <firewave@users.noreply.github.com>2018-01-07 01:30:54 +0100
commit4f0852d0d0e172c1e9d796bb80e6a43932d89314 (patch)
tree61aef48b549e51c4c9c7e9eb777858d576a53bc5 /src/frontend
parentbb2bcb1b5672a0089eb1388a194a8cb167c52c74 (diff)
fixed MT06816 (alloc-dealloc-mismatch in menu.cpp) (nw)
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/ui/menu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/menu.cpp b/src/frontend/mame/ui/menu.cpp
index 300733d63dc..2344d3bf07d 100644
--- a/src/frontend/mame/ui/menu.cpp
+++ b/src/frontend/mame/ui/menu.cpp
@@ -261,7 +261,7 @@ menu::~menu()
{
pool *const ppool = m_pool;
m_pool = m_pool->next;
- global_free(ppool);
+ global_free_array(ppool);
}
}