Haiku: Fix incorrect version macro in SDL_SYS_OpenURL

(cherry picked from commit 700cf42a9d)
This commit is contained in:
Sawkez
2026-08-06 21:05:05 +04:00
committed by Sam Lantinga
parent 66ca28e3be
commit 46604eb8c0

View File

@@ -25,7 +25,7 @@
bool SDL_SYS_OpenURL(const char *url)
{
#if B_BEOS_VERSION <= B_HAIKU_VERSION_1_BETA_5
#if B_HAIKU_VERSION <= B_HAIKU_VERSION_1_BETA_5
BUrl burl(url);
#else
BUrl burl(url, true);