Skip to content

Commit

Permalink
haiku: Changed internal variable to be static.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jun 2, 2017
1 parent 850185f commit 07b0df0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/haiku/SDL_BeApp.cc
Expand Up @@ -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
Expand Down
2 changes: 0 additions & 2 deletions src/main/haiku/SDL_BeApp.h
Expand Up @@ -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
Expand Down

0 comments on commit 07b0df0

Please sign in to comment.