summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Andrew Gardner <andrew.gardner@liu.se>2015-08-31 13:13:56 +0200
committer Andrew Gardner <andrew.gardner@liu.se>2015-08-31 13:20:52 +0200
commit9f23270e5d36eb2fceb0c7251827ba20f8ef3a14 (patch)
tree72d935d0c6ce2014500dae054acc911e59acbbdc
parent7f37824e4692dfb9f1b3d53a8f07bc1f81453fa5 (diff)
Removed final (?) references to "Poly New", fixing two header guards and a
couple of comments. (nw)
-rw-r--r--src/emu/video/poly.h6
-rw-r--r--src/emu/video/polylgcy.h6
-rw-r--r--src/mame/video/namcos22.c4
3 files changed, 8 insertions, 8 deletions
diff --git a/src/emu/video/poly.h b/src/emu/video/poly.h
index 4a9589affa7..1a564a2092d 100644
--- a/src/emu/video/poly.h
+++ b/src/emu/video/poly.h
@@ -34,8 +34,8 @@
#pragma once
-#ifndef __POLYNEW_H__
-#define __POLYNEW_H__
+#ifndef __POLY_H__
+#define __POLY_H__
#include <limits.h>
@@ -1172,4 +1172,4 @@ int poly_manager<_BaseType, _ObjectData, _MaxParams, _MaxPolys>::zclip_if_less(i
return nextout - outv;
}
-#endif // __POLYNEW_H__
+#endif // __POLY_H__
diff --git a/src/emu/video/polylgcy.h b/src/emu/video/polylgcy.h
index a69ae8e721a..bc409d77db5 100644
--- a/src/emu/video/polylgcy.h
+++ b/src/emu/video/polylgcy.h
@@ -34,8 +34,8 @@
#pragma once
-#ifndef __POLYNEW_H__
-#define __POLYNEW_H__
+#ifndef __POLYLGCY_H__
+#define __POLYLGCY_H__
/***************************************************************************
@@ -152,4 +152,4 @@ UINT32 poly_render_polygon(legacy_poly_manager *poly, void *dest, const rectangl
int poly_zclip_if_less(int numverts, const poly_vertex *v, poly_vertex *outv, int paramcount, float clipval);
-#endif /* __POLY_H__ */
+#endif /* __POLYLGCY_H__ */
diff --git a/src/mame/video/namcos22.c b/src/mame/video/namcos22.c
index 8801fa0a10b..a5ee8803dae 100644
--- a/src/mame/video/namcos22.c
+++ b/src/mame/video/namcos22.c
@@ -43,7 +43,7 @@
#include "includes/namcos22.h"
-// polynew constructor
+// poly constructor
namcos22_renderer::namcos22_renderer(namcos22_state &state)
: poly_manager<float, namcos22_object_data, 4, 8000>(state.machine()),
m_state(state)
@@ -63,7 +63,7 @@ void namcos22_renderer::reset()
/*********************************************************************************************/
-// polynew scanline callbacks
+// poly scanline callbacks
void namcos22_renderer::renderscanline_uvi_full(INT32 scanline, const extent_t &extent, const namcos22_object_data &extra, int threadid)
{
float z = extent.param[0].start;