mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Truncated pointer
--HG-- branch : develop
This commit is contained in:
parent
c79e47384d
commit
b112b7bc9b
1 changed files with 1 additions and 1 deletions
|
@ -223,7 +223,7 @@ BOOL CALLBACK PatchObjSurfDlgProc(HWND hDlg, UINT message, WPARAM wParam, LPARAM
|
||||||
|
|
||||||
ep =(EditPatchMod *)lParam;
|
ep =(EditPatchMod *)lParam;
|
||||||
ep->hSurfPanel = hDlg;
|
ep->hSurfPanel = hDlg;
|
||||||
SetWindowLongPtr(hDlg, GWLP_USERDATA, (LONG)ep);
|
SetWindowLongPtr(hDlg, GWLP_USERDATA, (LONG_PTR)ep);
|
||||||
if (!ep->settingViewportTess && ep->settingDisp && ep->GetProdTess().type == TESS_SET)
|
if (!ep->settingViewportTess && ep->settingDisp && ep->GetProdTess().type == TESS_SET)
|
||||||
ep->settingDisp = FALSE;
|
ep->settingDisp = FALSE;
|
||||||
TessApprox t;
|
TessApprox t;
|
||||||
|
|
Loading…
Reference in a new issue