From 8e9a38948601d7bd1f710ad2da307c6ac9e063cf Mon Sep 17 00:00:00 2001 From: Ted Green Date: Mon, 29 Jun 2020 07:31:23 -0600 Subject: voodoo: Disable backbuf debug key (L), it interferes with player 3 default controls --- src/devices/video/voodoo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/video/voodoo.cpp b/src/devices/video/voodoo.cpp index 2040f8dc148..6b5ee3f3984 100644 --- a/src/devices/video/voodoo.cpp +++ b/src/devices/video/voodoo.cpp @@ -156,7 +156,7 @@ bits(7:4) and bit(24)), X, and Y: *************************************/ #define DEBUG_DEPTH (0) -#define DEBUG_LOD (0) +#define DEBUG_BACKBUF (0) #define LOG_VBLANK_SWAP (0) #define LOG_FIFO (0) @@ -910,7 +910,7 @@ int voodoo_device::voodoo_update(bitmap_rgb32 &bitmap, const rectangle &cliprect } /* debugging! */ - if (machine().input().code_pressed(KEYCODE_L)) + if (DEBUG_BACKBUF && machine().input().code_pressed(KEYCODE_L)) drawbuf = fbi.backbuf; /* copy from the current front buffer */ -- cgit v1.2.3