summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/vector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/vector.cpp')
-rw-r--r--src/devices/video/vector.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/video/vector.cpp b/src/devices/video/vector.cpp
index 28b507323d5..46a21b535be 100644
--- a/src/devices/video/vector.cpp
+++ b/src/devices/video/vector.cpp
@@ -42,10 +42,11 @@
**************************************************************************** */
#include "emu.h"
-#include "emuopts.h"
-#include "rendutil.h"
#include "vector.h"
+#include "emuopts.h"
+#include "render.h"
+
#define VECTOR_WIDTH_DENOM 512
@@ -85,7 +86,7 @@ void vector_device::device_start()
m_vector_index = 0;
/* allocate memory for tables */
- m_vector_list = make_unique_clear<point[]>(MAX_POINTS);
+ m_vector_list = std::make_unique<point[]>(MAX_POINTS);
}
/*