diff options
| author | Egor <egor.yusov@gmail.com> | 2018-02-10 19:56:36 +0000 |
|---|---|---|
| committer | Egor <egor.yusov@gmail.com> | 2018-02-10 19:56:36 +0000 |
| commit | d823930b20c37f92073791e18f9e6a744dc34d51 (patch) | |
| tree | 25d8dda1c46a05cd651af4818dd2ba20e44f47eb /Common/NativeApp/src/Win32/WinMain.cpp | |
| parent | Reworked win32 and uwp cmake build rules (diff) | |
| download | DiligentEngine-d823930b20c37f92073791e18f9e6a744dc34d51.tar.gz DiligentEngine-d823930b20c37f92073791e18f9e6a744dc34d51.zip | |
Fixed linux build
Diffstat (limited to 'Common/NativeApp/src/Win32/WinMain.cpp')
| -rw-r--r-- | Common/NativeApp/src/Win32/WinMain.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Common/NativeApp/src/Win32/WinMain.cpp b/Common/NativeApp/src/Win32/WinMain.cpp index 878f1ec..6b53082 100644 --- a/Common/NativeApp/src/Win32/WinMain.cpp +++ b/Common/NativeApp/src/Win32/WinMain.cpp @@ -125,7 +125,7 @@ LRESULT CALLBACK MessageProc(HWND wnd, UINT message, WPARAM wParam, LPARAM lPara case WM_SIZE: // Window size has been changed if( g_pTheApp ) { - g_pTheApp->Resize(LOWORD(lParam), HIWORD(lParam)); + g_pTheApp->WindowResize(LOWORD(lParam), HIWORD(lParam)); } return 0; |
