Skip to content

Commit

Permalink
haiku: Patched to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Sep 30, 2016
1 parent f2fcd32 commit f10db40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/video/haiku/SDL_BWin.h
Expand Up @@ -578,9 +578,9 @@ class SDL_BWin:public BDirectWindow
return;
}
if (bEnabled) {
SetFlags(GetFlags() & ~(B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
SetFlags(Flags() & ~(B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
} else {
SetFlags(GetFlags() | (B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
SetFlags(Flags() | (B_NOT_RESIZABLE | B_NOT_ZOOMABLE));
}
}

Expand Down

0 comments on commit f10db40

Please sign in to comment.