From e59f72739a3b349f3e6b27450fb6b3c0a429194c Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 3 Jun 2019 19:45:23 -0400 Subject: [PATCH] Core/Analytics: Turn analytics URL into a C-string Less reading and also doesn't store an unnecessary pointer value in the executable, making it smaller by 8 bytes. --- Source/Core/Core/Analytics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Analytics.cpp b/Source/Core/Core/Analytics.cpp index ecf85be4ec..bc3a7e9872 100644 --- a/Source/Core/Core/Analytics.cpp +++ b/Source/Core/Core/Analytics.cpp @@ -36,7 +36,7 @@ namespace { -constexpr const char* ANALYTICS_ENDPOINT = "https://analytics.dolphin-emu.org/report"; +constexpr char ANALYTICS_ENDPOINT[] = "https://analytics.dolphin-emu.org/report"; } // namespace #if defined(ANDROID)