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
+1 -1
View File
@@ -498,7 +498,7 @@ love::graphics::StreamBuffer *CreateStreamBuffer(BufferType mode, size_t size)
// slow on most drivers. On macOS, having a separate driver thread
// is opt-in via an API, and we don't do it, so we can use this
// instead of the (potentially slower) SubData approach.
#ifdef LOVE_MACOSX
#ifdef LOVE_MACOS
return new StreamBufferMapSync(mode, size);
#endif
}