mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-24 14:24:54 +00:00
Merge pull request #9345 from MerryMage/analytics
Analytics: Add rarer OSes to analytics
This commit is contained in:
commit
4c8ccc63b5
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
Reference in a new issue