use pointers instead :D

This commit is contained in:
freedom7341
2023-10-04 13:20:01 -06:00
parent 82c2d2d15f
commit 2c16c265ca
3 changed files with 17 additions and 22 deletions

View File

@@ -146,7 +146,7 @@ BOOL CALLBACK NewGroupDlgProc(HWND hWndDlg, UINT message, WPARAM wParam, LPARAM
grp.rcGroup.left = grp.rcGroup.top = grp.rcGroup.right = grp.rcGroup.bottom = CW_USEDEFAULT;
// Group's ready!
if (CreateGroup(grp) != NULL)
if (CreateGroup(&grp) != NULL)
{
EndDialog(hWndDlg, FALSE);
break;