mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-24 16:49:50 +00:00
64-bit windows buildfix
This commit is contained in:
parent
21e2b0e32f
commit
81c6e63fd6
@ -51,8 +51,8 @@ CMemoryDlg::CMemoryDlg(HINSTANCE _hInstance, HWND _hParent, DebugInterface *_cpu
|
||||
|
||||
// subclass the edit box
|
||||
HWND editWnd = GetDlgItem(m_hDlg,IDC_ADDRESS);
|
||||
DefAddressEditProc = (WNDPROC)GetWindowLong(editWnd,GWL_WNDPROC);
|
||||
SetWindowLong(editWnd,GWL_WNDPROC,(long)AddressEditProc);
|
||||
DefAddressEditProc = (WNDPROC)GetWindowLongPtr(editWnd,GWLP_WNDPROC);
|
||||
SetWindowLongPtr(editWnd,GWLP_WNDPROC,(LONG_PTR)AddressEditProc);
|
||||
AddressEditParentHwnd = m_hDlg;
|
||||
|
||||
Size();
|
||||
|
Loading…
Reference in New Issue
Block a user