NOISSUE fix some OS ifdefs

This commit is contained in:
Petr Mrázek 2021-12-31 00:36:25 +01:00
parent 94fdf13f4a
commit 9cc168c526

View File

@ -28,11 +28,11 @@ OpSys OpSys_fromString(QString);
QString OpSys_toString(OpSys);
#ifdef Q_OS_WIN32
#define currentSystem Os_Windows
#elif Q_OS_MAC
#define currentSystem Os_OSX
#define currentSystem Os_Windows
#elif defined Q_OS_MAC
#define currentSystem Os_OSX
#elif defined Q_OS_FREEBSD
#define currentSystem Os_FreeBSD
#define currentSystem Os_FreeBSD
#else
#define currentSystem Os_Linux
#endif
#define currentSystem Os_Linux
#endif