summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/debugview.mm
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2022-09-23 21:30:48 -0400
committer arbee <rb6502@users.noreply.github.com>2022-09-23 21:30:48 -0400
commit79dddf368c82788d1110559972cd61e4d214d60b (patch)
treec78c7ec4b5214c61a01bbc7eddfb7e73ae8b0450 /src/osd/modules/debugger/osx/debugview.mm
parent38324ac31caf417e5168d686730e4e143d8758d5 (diff)
debugview.mm: Raise requirement for Dark Mode to 10.15. [R. Belmont, kmg]
Diffstat (limited to '')
-rw-r--r--src/osd/modules/debugger/osx/debugview.mm4
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];