From ed8637f437d5b52fd1d62669279f382fe2879683 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Tue, 22 Nov 2022 08:28:56 -0800 Subject: [PATCH] Fixed typo --- include/SDL_version.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_version.h b/include/SDL_version.h index 6b6c59ba2..81b521cda 100644 --- a/include/SDL_version.h +++ b/include/SDL_version.h @@ -102,7 +102,7 @@ typedef struct SDL_version * This macro will evaluate to true if compiled with SDL at least X.Y.Z. */ #define SDL_VERSION_ATLEAST(X, Y, Z) \ - (SDL_COMPILEDVERSION >= SDL_VERSIONUM(X, Y, Z)) + (SDL_COMPILEDVERSION >= SDL_VERSIONNUM(X, Y, Z)) /** * Get the version of SDL that is linked against your program.