we've been using the wrong define for mac detection

This commit is contained in:
2025-01-08 11:30:21 -06:00
committed by Celtic Minstrel
parent 747b08ee09
commit 73e85836a3
3 changed files with 5 additions and 5 deletions

View File

@@ -63,7 +63,7 @@ int getMenubarHeight();
// coordinate space, but on Linux it is.
inline int os_specific_y_offset() {
return
#if defined(SFML_SYSTEM_WINDOWS) || defined(SFML_SYSTEM_MAC)
#if defined(SFML_SYSTEM_WINDOWS) || defined(SFML_SYSTEM_MACOS)
0;
#else
getMenubarHeight();