diff options
author | 2022-09-23 21:30:48 -0400 | |
---|---|---|
committer | 2022-09-23 21:30:48 -0400 | |
commit | 79dddf368c82788d1110559972cd61e4d214d60b (patch) | |
tree | c78c7ec4b5214c61a01bbc7eddfb7e73ae8b0450 /src/osd | |
parent | 38324ac31caf417e5168d686730e4e143d8758d5 (diff) |
debugview.mm: Raise requirement for Dark Mode to 10.15. [R. Belmont, kmg]
Diffstat (limited to 'src/osd')
-rw-r--r-- | src/osd/modules/debugger/osx/debugview.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/osd/modules/debugger/osx/debugview.mm b/src/osd/modules/debugger/osx/debugview.mm index 381c91f7dfc..540fa41815d 100644 --- a/src/osd/modules/debugger/osx/debugview.mm +++ b/src/osd/modules/debugger/osx/debugview.mm @@ -51,8 +51,8 @@ static void debugwin_view_update(debug_view &view, void *osdprivate) @implementation MAMEDebugView + (void)initialize { - // 10.14 and better get full adaptive Dark Mode support -#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_14 + // 10.15 and better get full adaptive Dark Mode support +#if MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_15 DefaultForeground = [[NSColor textColor] retain]; ChangedForeground = [[NSColor systemRedColor] retain]; CommentForeground = [[NSColor systemGreenColor] retain]; |