mirror of
https://github.com/mamedev/mame.git
synced 2024-11-18 10:06:19 +01:00
MACOS_X_VERSION_10_15 is not defined on really SDKs. (#10388)
This commit is contained in:
parent
f4b23f1737
commit
f38d70fd40
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ static void debugwin_view_update(debug_view &view, void *osdprivate)
|
|||
|
||||
+ (void)initialize {
|
||||
// 10.15 and better get full adaptive Dark Mode support
|
||||
#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15
|
||||
#if defined(MAC_OS_X_VERSION_10_15) && MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15
|
||||
DefaultForeground = [[NSColor textColor] retain];
|
||||
ChangedForeground = [[NSColor systemRedColor] retain];
|
||||
CommentForeground = [[NSColor systemGreenColor] retain];
|
||||
|
|
Loading…
Reference in a new issue