diff options
Diffstat (limited to 'src/main/beos/SDL_BeApp.cc')
-rw-r--r-- | src/main/beos/SDL_BeApp.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/beos/SDL_BeApp.cc b/src/main/beos/SDL_BeApp.cc index 07632f39..33a7330b 100644 --- a/src/main/beos/SDL_BeApp.cc +++ b/src/main/beos/SDL_BeApp.cc @@ -20,6 +20,8 @@ */ #include "SDL_config.h" +#ifdef __BEOS__ + /* Handle the BeApp specific portions of the application */ #include <AppKit.h> @@ -116,8 +118,6 @@ SDL_QuitBeApp(void) } } - -/* vi: set ts=4 sw=4 expandtab: */ #ifdef __cplusplus } #endif @@ -131,3 +131,7 @@ void SDL_BApp::ClearID(SDL_BWin *bwin) { --i; } } + +#endif /* __BEOS__ */ + +/* vi: set ts=4 sw=4 expandtab: */ |