summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/x86log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/x86log.cpp')
-rw-r--r--src/devices/cpu/x86log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/x86log.cpp b/src/devices/cpu/x86log.cpp
index b97f2553f11..7c7b13d1966 100644
--- a/src/devices/cpu/x86log.cpp
+++ b/src/devices/cpu/x86log.cpp
@@ -37,7 +37,7 @@ x86log_context *x86log_create_context(const char *filename)
x86log_context *log;
/* allocate the log */
- log = global_alloc_clear<x86log_context>();
+ log = new x86log_context;
/* allocate the filename */
log->filename.assign(filename);
@@ -59,7 +59,7 @@ void x86log_free_context(x86log_context *log) noexcept
fclose(log->file);
/* free the structure */
- global_free(log);
+ delete log;
}