mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-22 15:16:12 +00:00
Fixed: Truncated pointer
This commit is contained in:
parent
1e32e85b2a
commit
e76f5d5919
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