From 5b9cd1d3a04a0d706360fd6dff01634920d2e1f9 Mon Sep 17 00:00:00 2001 From: Charlie Fenton Date: Fri, 3 May 2024 05:04:00 -0700 Subject: [PATCH] Mac screensaver: change minimum graphics library version number to 7.24.4 to use new logic --- clientscr/Mac_Saver_ModuleView.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/clientscr/Mac_Saver_ModuleView.m b/clientscr/Mac_Saver_ModuleView.m index 4b710b1789..746d7583f7 100644 --- a/clientscr/Mac_Saver_ModuleView.m +++ b/clientscr/Mac_Saver_ModuleView.m @@ -176,9 +176,9 @@ static bool myIsPreview; #define MAXWAITFORCONNECTIONCATALINA 12.0 #define MAX_CGWINDOWLIST_TRIES 3 -#define MAJORBOINCGFXLIBNEEDEDFORSONOMA 8 -#define MINORBOINCGFXLIBNEEDEDFORSONOMA 0 -#define RELEASEBOINCGFXLIBNEEDEDFORSONOMA 2 +#define MAJORBOINCGFXLIBNEEDEDFORSONOMA 7 +#define MINORBOINCGFXLIBNEEDEDFORSONOMA 24 +#define RELEASEBOINCGFXLIBNEEDEDFORSONOMA 4 int signof(float x) { return (x > 0.0 ? 1 : -1);