From 5bb6ac8164c4cbd8e24ad6878c4e6d0e1a00c593 Mon Sep 17 00:00:00 2001 From: skidau Date: Sat, 2 Mar 2013 16:18:55 +1100 Subject: [PATCH] Increased the FIFO buffer size to 2MB from 1MB. Fixes Killer 7's Angel boss. Fixes issue 5415. --- Source/Core/VideoCommon/Src/Fifo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/Src/Fifo.h b/Source/Core/VideoCommon/Src/Fifo.h index 75e7d782f5..f465db8f85 100644 --- a/Source/Core/VideoCommon/Src/Fifo.h +++ b/Source/Core/VideoCommon/Src/Fifo.h @@ -23,7 +23,7 @@ class PointerWrap; -#define FIFO_SIZE (1024*1024) +#define FIFO_SIZE (2*1024*1024) extern volatile bool g_bSkipCurrentFrame;