diff options
-rw-r--r-- | src/devices/video/vector.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/devices/video/vector.cpp b/src/devices/video/vector.cpp index 46a21b535be..b344801dd9f 100644 --- a/src/devices/video/vector.cpp +++ b/src/devices/video/vector.cpp @@ -50,7 +50,8 @@ #define VECTOR_WIDTH_DENOM 512 -#define MAX_POINTS 10000 +// 20000 is needed for mhavoc (see MT 06668) 10000 is enough for other games +#define MAX_POINTS 20000 float vector_options::s_flicker = 0.0f; float vector_options::s_beam_width_min = 0.0f; |