From 83d3c7769e7af6a0940df12c7f2f21bbf93ffdd5 Mon Sep 17 00:00:00 2001
From: juanitotc <john.frankish@outlook.com>
Date: Wed, 12 Mar 2025 15:02:41 +0000
Subject: [PATCH] juanito: correct version cutoff

---
 Rotated.C | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Rotated.C b/Rotated.C
index b4f1d83..3e34a5c 100644
--- a/Rotated.C
+++ b/Rotated.C
@@ -36,10 +36,10 @@
 #include <string.h>
 #include <stdio.h>
 
-// If the FLTK version is 1.3.0 or higher FLTK's native rotated
+// If the FLTK version is 1.4.0 or higher FLTK's native rotated
 // text drawing can be used rather than "doing it manually"
 
-#if defined(FL_API_VERSION) && (FL_API_VERSION >= 10300)
+#if defined(FL_API_VERSION) && (FL_API_VERSION >= 10400)
 #define FLTK_ROTATED_TEXT 1
 #else
 #define FLTK_ROTATED_TEXT 0
