mirror of https://github.com/PCSX2/pcsx2.git
gsdx:windows: Change m_colorspace to INT_PTR
Fixes a 64-bit compile error.
This commit is contained in:
parent
d58c07d697
commit
5719bddbb5
|
@ -181,7 +181,7 @@ bool GSCaptureDlg::OnCommand(HWND hWnd, UINT id, UINT code)
|
|||
m_width = GetTextAsInt(IDC_WIDTH);
|
||||
m_height = GetTextAsInt(IDC_HEIGHT);
|
||||
m_filename = GetText(IDC_FILENAME);
|
||||
ComboBoxGetSelData(IDC_COLORSPACE, (INT_PTR)m_colorspace);
|
||||
ComboBoxGetSelData(IDC_COLORSPACE, m_colorspace);
|
||||
|
||||
Codec c;
|
||||
|
||||
|
|
|
@ -49,6 +49,6 @@ public:
|
|||
int m_width;
|
||||
int m_height;
|
||||
string m_filename;
|
||||
int m_colorspace;
|
||||
INT_PTR m_colorspace;
|
||||
CComPtr<IBaseFilter> m_enc;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue