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.
This commit is contained in:
Lioncash 2019-06-03 19:45:23 -04:00
parent ea9f887170
commit e59f72739a
1 changed files with 1 additions and 1 deletions

View File

@ -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)