X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Ffreeglut_window.c;h=34d3b90912aaed2ef685203f4a97f06d3f26267a;hb=5d0b4593ef4715accf82902ff3d80edfb4e2900e;hp=e83dd75fd11cb8d99a7ac9109857ef0dfeb03e7c;hpb=d27fd0aebaecfa09560f296df23829757c42fb65;p=freeglut diff --git a/src/freeglut_window.c b/src/freeglut_window.c index e83dd75..34d3b90 100644 --- a/src/freeglut_window.c +++ b/src/freeglut_window.c @@ -29,8 +29,6 @@ #include "config.h" #endif -#define G_LOG_DOMAIN "freeglut-window" - #include "../include/GL/freeglut.h" #include "freeglut_internal.h" @@ -237,8 +235,8 @@ void fgSetWindow ( SFG_Window *window ) window->Window.Device = GetDC( window->Window.Handle ); wglMakeCurrent( window->Window.Device, - window->Window.Context - ); + window->Window.Context + ); } #endif fgStructure.Window = window; @@ -781,7 +779,7 @@ void FGAPIENTRY glutSetIconTitle( const char* title ) #elif TARGET_HOST_WIN32 - SetWindowText( fgStructure.Window->Window.Handle, title ); + SetWindowText( fgStructure.Window->Window.Handle, title ); #endif @@ -819,8 +817,8 @@ void FGAPIENTRY glutReshapeWindow( int width, int height ) */ if ( ! fgStructure.Window->IsMenu ) { - width += GetSystemMetrics( SM_CXSIZEFRAME ) * 2; - height += GetSystemMetrics( SM_CYSIZEFRAME ) * 2 + + width += GetSystemMetrics( SM_CXSIZEFRAME ) * 2; + height += GetSystemMetrics( SM_CYSIZEFRAME ) * 2 + GetSystemMetrics( SM_CYCAPTION ); } }