Fixed some __BEOS__ vs __HAIKU__ preprocessor tests (thanks, Axel!).

Fixes Bugzilla #1773.
This commit is contained in:
Ryan C. Gordon 2013-07-05 01:09:27 -04:00
parent 522eeaf814
commit 32e16f45fa
2 changed files with 4 additions and 4 deletions

View file

@ -24,7 +24,8 @@
/* Useful functions and variables from SDL_sysevents.c */
#ifdef __BEOS__ /* The Be event loop runs in a separate thread */
#if defined(__BEOS__) || defined(__HAIKU__)
/* The Be and Haiku event loops run in a separate thread */
#define MUST_THREAD_EVENTS
#endif