diff options
| author | degasus <wickmarkus@web.de> | 2015-04-06 02:17:57 +0200 |
|---|---|---|
| committer | degasus <wickmarkus@web.de> | 2015-05-25 09:33:34 +0200 |
| commit | acd074e291d287080031d7295baa6e2f7862440f (patch) | |
| tree | 8e4d38caf103282d5a2ae38ca8357168b70c4fe6 /Source/Core/VideoCommon/MainBase.cpp | |
| parent | ac0e3041599429f271d6fddc284ec3e4753c0cd3 (diff) | |
VideoCommon: Make BBox emulation optional
Diffstat (limited to 'Source/Core/VideoCommon/MainBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/MainBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
