summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/VideoBackendBase.cpp
diff options
context:
space:
mode:
authorPokechu22 <Pokechu022@gmail.com>2023-05-06 17:18:17 -0700
committerPokechu22 <Pokechu022@gmail.com>2023-05-06 17:18:17 -0700
commit810eb70f0ec94bf2d1de5cbff52ddc04551fb227 (patch)
tree1c31d312791d28effe32e505e56d072b9e0452f7 /Source/Core/VideoCommon/VideoBackendBase.cpp
parent2319210d853899a4d0659c120cfa6162a108daed (diff)
DolphinAnalytics: Add READS_BOUNDING_BOX game quirk
Diffstat (limited to 'Source/Core/VideoCommon/VideoBackendBase.cpp')
-rw-r--r--Source/Core/VideoCommon/VideoBackendBase.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoBackendBase.cpp b/Source/Core/VideoCommon/VideoBackendBase.cpp
index b6f4fee2f3..9d6ff70664 100644
--- a/Source/Core/VideoCommon/VideoBackendBase.cpp
+++ b/Source/Core/VideoCommon/VideoBackendBase.cpp
@@ -20,6 +20,7 @@
#include "Core/Config/MainSettings.h"
#include "Core/ConfigManager.h"
#include "Core/Core.h"
+#include "Core/DolphinAnalytics.h"
#include "Core/System.h"
// TODO: ugly
@@ -171,6 +172,8 @@ u32 VideoBackendBase::Video_GetQueryResult(PerfQueryType type)
u16 VideoBackendBase::Video_GetBoundingBox(int index)
{
+ DolphinAnalytics::Instance().ReportGameQuirk(GameQuirk::READS_BOUNDING_BOX);
+
if (!g_ActiveConfig.bBBoxEnable)
{
static bool warn_once = true;