Skip to content

Commit

Permalink
haiku: Changed internal function to be static.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed May 7, 2017
1 parent 3ed2f0c commit b7b9190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/haiku/SDL_bframebuffer.cc
Expand Up @@ -35,7 +35,7 @@
extern "C" {
#endif

int32 BE_UpdateOnce(SDL_Window *window);
static int32 BE_UpdateOnce(SDL_Window *window);

static SDL_INLINE SDL_BWin *_ToBeWin(SDL_Window *window) {
return ((SDL_BWin*)(window->driverdata));
Expand Down Expand Up @@ -200,7 +200,7 @@ void BE_DestroyWindowFramebuffer(_THIS, SDL_Window * window) {
* The specific issues have since become rare enough that they may have been
* solved, but I doubt it- they were pretty sporadic before now.
*/
int32 BE_UpdateOnce(SDL_Window *window) {
static int32 BE_UpdateOnce(SDL_Window *window) {
SDL_BWin *bwin = _ToBeWin(window);
BScreen bscreen;
if(!bscreen.IsValid()) {
Expand Down

0 comments on commit b7b9190

Please sign in to comment.