mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-09 23:59:27 +01:00
Analytics: Add rarer OSes to analytics
This commit is contained in:
parent
c582fb098d
commit
d109451ad5
@ -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…
x
Reference in New Issue
Block a user