summaryrefslogtreecommitdiffstats
path: root/Common/NativeApp/src/Win32/WinMain.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Common/NativeApp/src/Win32/WinMain.cpp')
-rw-r--r--Common/NativeApp/src/Win32/WinMain.cpp2
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;