Fixed spacing

This commit is contained in:
Areloch 2014-07-15 17:52:27 -05:00
parent c2da67d473
commit 2864edf291
2 changed files with 3 additions and 3 deletions

View file

@ -133,7 +133,7 @@ public:
/// This method removes the curtain window. /// This method removes the curtain window.
virtual void raiseCurtain()=0; virtual void raiseCurtain()=0;
/// This method indicates to created windows to show as normal. /// This method indicates to created windows to show as normal.
virtual void setDisplayWindow(bool set)=0; virtual void setDisplayWindow(bool set)=0;
private: private:

View file

@ -155,7 +155,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED); SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
if(mDisplayWindow) if(mDisplayWindow)
ShowWindow(getHWND(), SW_SHOWNORMAL); ShowWindow(getHWND(), SW_SHOWNORMAL);
// Clear the menu bar from the window for full screen // Clear the menu bar from the window for full screen
HMENU menu = GetMenu(getHWND()); HMENU menu = GetMenu(getHWND());
@ -220,7 +220,7 @@ void Win32Window::setVideoMode( const GFXVideoMode &mode )
SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED); SetWindowPos( getHWND(), HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
if(mDisplayWindow) if(mDisplayWindow)
ShowWindow( getHWND(), SW_SHOWNORMAL); ShowWindow( getHWND(), SW_SHOWNORMAL);
} }
mFullscreen = false; mFullscreen = false;