Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
haiku: Changed internal variable to be static.
- Loading branch information
Showing
with
1 addition
and
3 deletions.
-
+1
−1
src/main/haiku/SDL_BeApp.cc
-
+0
−2
src/main/haiku/SDL_BeApp.h
|
@@ -45,7 +45,7 @@ extern "C" { |
|
|
#include "../../thread/SDL_systhread.h" |
|
|
|
|
|
/* Flag to tell whether or not the Be application is active or not */ |
|
|
int SDL_BeAppActive = 0; |
|
|
static int SDL_BeAppActive = 0; |
|
|
static SDL_Thread *SDL_AppThread = NULL; |
|
|
|
|
|
static int |
|
|
|
@@ -31,8 +31,6 @@ extern int SDL_InitBeApp(void); |
|
|
/* Quit the Be Application, if there's nothing left to do */ |
|
|
extern void SDL_QuitBeApp(void); |
|
|
|
|
|
/* Flag to tell whether the app is active or not */ |
|
|
extern int SDL_BeAppActive; |
|
|
/* vi: set ts=4 sw=4 expandtab: */ |
|
|
|
|
|
#ifdef __cplusplus |
|
|