summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/model2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/includes/model2.h')
-rw-r--r--src/mame/includes/model2.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/includes/model2.h b/src/mame/includes/model2.h
index 11a01065c22..8a61551ec35 100644
--- a/src/mame/includes/model2.h
+++ b/src/mame/includes/model2.h
@@ -331,14 +331,14 @@ static inline uint16_t get_texel( uint32_t base_x, uint32_t base_y, int x, int y
struct triangle;
-class model2_renderer : public poly_manager<float, m2_poly_extra_data, 4, 4000>
+class model2_renderer : public poly_manager<float, m2_poly_extra_data, 10, 32768>
{
public:
typedef void (model2_renderer::*scanline_render_func)(int32_t scanline, const extent_t& extent, const m2_poly_extra_data& object, int threadid);
public:
model2_renderer(model2_state& state)
- : poly_manager<float, m2_poly_extra_data, 4, 4000>(state.machine())
+ : poly_manager<float, m2_poly_extra_data, 10, 32768>(state.machine())
, m_state(state)
, m_destmap(state.m_screen->width(), state.m_screen->height())
{