mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-02 14:58:03 +03:00
Analytics: Add rarer OSes to analytics
This commit is contained in:
parent
c582fb098d
commit
d109451ad5
1 changed files with 6 additions and 0 deletions
|
@ -293,6 +293,12 @@ void DolphinAnalytics::MakeBaseBuilder()
|
|||
builder.AddData("os-type", "linux");
|
||||
#elif defined(__FreeBSD__)
|
||||
builder.AddData("os-type", "freebsd");
|
||||
#elif defined(__OpenBSD__)
|
||||
builder.AddData("os-type", "openbsd");
|
||||
#elif defined(__NetBSD__)
|
||||
builder.AddData("os-type", "netbsd");
|
||||
#elif defined(__HAIKU__)
|
||||
builder.AddData("os-type", "haiku");
|
||||
#else
|
||||
builder.AddData("os-type", "unknown");
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue