missed the windowproc return value

git-svn-id: https://svn.code.sf.net/p/freeglut/code/trunk@1547 7f0cb862-5218-0410-a997-914c9d46530a
This commit is contained in:
dcnieho 2013-03-01 18:43:22 +00:00
parent bab8eb3423
commit bf4a53a72e

View File

@ -663,6 +663,7 @@ LRESULT CALLBACK fgPlatformWindowProc( HWND hWnd, UINT uMsg, WPARAM wParam, LPAR
fghRedrawWindow( window ); fghRedrawWindow( window );
EndPaint( hWnd, &ps ); EndPaint( hWnd, &ps );
} }
lRet = 0; /* As per docs, should return 0 */
} }
break; break;