From d7b0215c79cec0cc0df5f6a5fb9dc035aa72fa3f Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 29 Mar 2013 21:25:02 -0400 Subject: [PATCH] Haiku no longer #defines __BEOS__, so check for it too (thanks, Axel!). Fixes Bugzilla #1773. --- src/main/beos/SDL_BeApp.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/beos/SDL_BeApp.cc b/src/main/beos/SDL_BeApp.cc index ae5e9ad1c..78eb3fb0e 100644 --- a/src/main/beos/SDL_BeApp.cc +++ b/src/main/beos/SDL_BeApp.cc @@ -20,7 +20,7 @@ */ #include "SDL_config.h" -#ifdef __BEOS__ +#if defined(__BEOS__) || defined(__HAIKU__) /* Handle the BeApp specific portions of the application */