From f10db4071dbb156d37f2117667ed8066defa3bde Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Thu, 29 Sep 2016 23:15:56 -0400 Subject: [PATCH] haiku: Patched to compile. --- src/video/haiku/SDL_BWin.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/haiku/SDL_BWin.h b/src/video/haiku/SDL_BWin.h index b3b94dc1d..0f031491b 100644 --- a/src/video/haiku/SDL_BWin.h +++ b/src/video/haiku/SDL_BWin.h @@ -578,9 +578,9 @@ private: 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)); } }