win32-fix soundview in x64

This commit is contained in:
zeromus 2012-05-26 22:18:46 +00:00
parent 3ad7bec287
commit 4a6c59e018
1 changed files with 1 additions and 1 deletions

View File

@ -361,7 +361,7 @@ static INT_PTR CALLBACK SoundView_DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, L
if(data == NULL) if(data == NULL)
{ {
data = (SoundView_DataStruct*)lParam; data = (SoundView_DataStruct*)lParam;
SetWindowLongPtr(hDlg, DWLP_USER, (LONG)data); SetWindowLongPtr(hDlg, DWLP_USER, (LONG_PTR)data);
} }
data->hDlg = hDlg; data->hDlg = hDlg;