From acd074e291d287080031d7295baa6e2f7862440f Mon Sep 17 00:00:00 2001 From: degasus Date: Mon, 6 Apr 2015 02:17:57 +0200 Subject: VideoCommon: Make BBox emulation optional --- Source/Core/VideoCommon/MainBase.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/MainBase.cpp') diff --git a/Source/Core/VideoCommon/MainBase.cpp b/Source/Core/VideoCommon/MainBase.cpp index 102e17db34..1454d88ca0 100644 --- a/Source/Core/VideoCommon/MainBase.cpp +++ b/Source/Core/VideoCommon/MainBase.cpp @@ -152,7 +152,7 @@ u32 VideoBackendHardware::Video_GetQueryResult(PerfQueryType type) u16 VideoBackendHardware::Video_GetBoundingBox(int index) { - if (!g_ActiveConfig.backend_info.bSupportsBBox) + if (!g_ActiveConfig.backend_info.bSupportsBBox || !g_ActiveConfig.bBBoxEnable) return BoundingBox::coords[index]; SyncGPU(SYNC_GPU_BBOX); -- cgit v1.2.3