Update macOS system name

This commit is contained in:
Florin9doi 2020-01-24 19:39:37 +02:00
parent 5fbf2d7713
commit c824fabd53
2 changed files with 2 additions and 2 deletions

View File

@ -108,7 +108,7 @@ std::string System_GetProperty(SystemProperty prop) {
#elif defined(_WIN32)
return "Qt:Windows";
#elif defined(Q_OS_MAC)
return "Qt:Mac";
return "Qt:macOS";
#else
return "Qt";
#endif

View File

@ -257,7 +257,7 @@ std::string System_GetProperty(SystemProperty prop) {
#elif __linux__
return "SDL:Linux";
#elif __APPLE__
return "SDL:OSX";
return "SDL:macOS";
#else
return "SDL:";
#endif