diff options
author | 2018-02-14 17:13:36 +0100 | |
---|---|---|
committer | 2018-02-14 17:14:15 +0100 | |
commit | 7b7f5a5b48a260034c0865565a392040a0d3ea3c (patch) | |
tree | 7292eb5d3bc21b07a1783c6e3462116ec3fa43b2 /src | |
parent | d394762482b57ec444f398ac307200b9f19c6b59 (diff) |
model2.cpp: Attempt to relax poly_manager params, crashes less often now (nw)
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/includes/model2.h | 4 |
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()) { |