diff options
author | 2016-04-29 15:25:33 -0400 | |
---|---|---|
committer | 2016-04-29 15:25:33 -0400 | |
commit | a5095efde73f2e3825e74f3cd4795426588125bc (patch) | |
tree | 04cb7096f016e99336b0ca50974a8ee66c6f9cac | |
parent | b2c2f5377ba437dd2b08846af4e304e5d9f80f94 (diff) |
Fixed default clip size which fixes vector output regression (from Sarayan) (nw)
-rw-r--r-- | src/mame/video/avgdvg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/avgdvg.cpp b/src/mame/video/avgdvg.cpp index 21e7ea91265..181efe86555 100644 --- a/src/mame/video/avgdvg.cpp +++ b/src/mame/video/avgdvg.cpp @@ -69,7 +69,7 @@ void avgdvg_device::apply_flipping(int *x, int *y) void avgdvg_device::vg_flush() { - int cx0 = 0, cy0 = 0, cx1 = 0x2000000, cy1 = 0x2000000; + int cx0 = 0, cy0 = 0, cx1 = 0x5000000, cy1 = 0x5000000; int i = 0; while (vectbuf[i].status == VGCLIP) |