gsdx:windows: Change m_colorspace to INT_PTR

Fixes a 64-bit compile error.
This commit is contained in:
Jonathan Li 2016-07-13 19:35:43 +01:00
parent d58c07d697
commit 5719bddbb5
2 changed files with 2 additions and 2 deletions

View File

@ -181,7 +181,7 @@ bool GSCaptureDlg::OnCommand(HWND hWnd, UINT id, UINT code)
m_width = GetTextAsInt(IDC_WIDTH); m_width = GetTextAsInt(IDC_WIDTH);
m_height = GetTextAsInt(IDC_HEIGHT); m_height = GetTextAsInt(IDC_HEIGHT);
m_filename = GetText(IDC_FILENAME); m_filename = GetText(IDC_FILENAME);
ComboBoxGetSelData(IDC_COLORSPACE, (INT_PTR)m_colorspace); ComboBoxGetSelData(IDC_COLORSPACE, m_colorspace);
Codec c; Codec c;

View File

@ -49,6 +49,6 @@ public:
int m_width; int m_width;
int m_height; int m_height;
string m_filename; string m_filename;
int m_colorspace; INT_PTR m_colorspace;
CComPtr<IBaseFilter> m_enc; CComPtr<IBaseFilter> m_enc;
}; };