From c137eb61d7061ade6761b2bc00feb92fd830dc13 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Tue, 12 Apr 2016 18:40:44 -0400 Subject: [PATCH] Patched to compile on Haiku...? --- src/main/haiku/SDL_BeApp.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/haiku/SDL_BeApp.cc b/src/main/haiku/SDL_BeApp.cc index 619ad3819..4c5df0954 100644 --- a/src/main/haiku/SDL_BeApp.cc +++ b/src/main/haiku/SDL_BeApp.cc @@ -33,13 +33,15 @@ #include "SDL_BeApp.h" #include "SDL_timer.h" #include "SDL_error.h" -#include "../../thread/SDL_systhread.h" #include "../../video/haiku/SDL_BWin.h" #ifdef __cplusplus extern "C" { #endif + +#include "../../thread/SDL_systhread.h" + /* Flag to tell whether or not the Be application is active or not */ int SDL_BeAppActive = 0; static SDL_Thread *SDL_AppThread = NULL;