diff options
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoBackendBase.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp index 2f7e92664a..f38601dcd7 100644 --- a/Source/Core/VideoCommon/VideoBackendBase.cpp +++ b/Source/Core/VideoCommon/VideoBackendBase.cpp @@ -168,10 +168,8 @@ u16 VideoBackendBase::Video_GetBoundingBox(int index) "for this game."); } warn_once = false; - return 0; } - - if (!g_ActiveConfig.backend_info.bSupportsBBox) + else if (!g_ActiveConfig.backend_info.bSupportsBBox) { static bool warn_once = true; if (warn_once) @@ -182,7 +180,6 @@ u16 VideoBackendBase::Video_GetBoundingBox(int index) "freezes while running this game."); } warn_once = false; - return 0; } Fifo::SyncGPU(Fifo::SyncGPUReason::BBox); |
