WGL: Get rid of the use of the Host_GetRenderWindowSize() call.

Just use the Windows API to accomplish the same thing (this is what is done in Update()).

This makes the backing window handle the correct data-type for Windows for easier use in function calls.
This commit is contained in:
Lioncash
2014-08-05 02:51:32 -04:00
parent 2b341bb267
commit df67a18c42
2 changed files with 17 additions and 12 deletions

View File

@ -22,5 +22,5 @@ public:
void Update();
bool PeekMessages();
void* m_window_handle;
HWND m_window_handle;
};