From c824fabd539d8a13285f029069b94b3604246e0b Mon Sep 17 00:00:00 2001 From: Florin9doi Date: Fri, 24 Jan 2020 19:39:37 +0200 Subject: [PATCH] Update macOS system name --- Qt/QtMain.cpp | 2 +- SDL/SDLMain.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Qt/QtMain.cpp b/Qt/QtMain.cpp index 9aa200641a..3c9641c1bd 100644 --- a/Qt/QtMain.cpp +++ b/Qt/QtMain.cpp @@ -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 diff --git a/SDL/SDLMain.cpp b/SDL/SDLMain.cpp index ca560fd44b..e8bc75fc4d 100644 --- a/SDL/SDLMain.cpp +++ b/SDL/SDLMain.cpp @@ -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