macOS: rename most internal uses of "macosx" to "macos".

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2019-12-22 17:54:20 -04:00
parent a27781aa6a
commit bc12312f0f
15 changed files with 52 additions and 57 deletions
+4 -4
View File
@@ -44,8 +44,8 @@
#if defined(LOVE_WINDOWS)
#include <windows.h>
#elif defined(LOVE_MACOSX)
#include "common/macosx.h"
#elif defined(LOVE_MACOS)
#include "common/macos.h"
#endif
#ifndef APIENTRY
@@ -1259,9 +1259,9 @@ void Window::requestAttention(bool continuous)
FlashWindowEx(&flashinfo);
}
#elif defined(LOVE_MACOSX)
#elif defined(LOVE_MACOS)
love::macosx::requestAttention(continuous);
love::macos::requestAttention(continuous);
#else