mirror of https://github.com/PCSX2/pcsx2.git
GSdx: fixing windows side...
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4347 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
7dd16f1b1b
commit
84ee819258
|
@ -142,7 +142,7 @@ bool GSWnd::Attach(void* handle, bool managed)
|
||||||
{
|
{
|
||||||
// TODO: subclass
|
// TODO: subclass
|
||||||
|
|
||||||
m_hWnd = hWnd;
|
m_hWnd = (HWND)handle;
|
||||||
m_managed = managed;
|
m_managed = managed;
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
|
|
||||||
class GSWnd
|
class GSWnd
|
||||||
{
|
{
|
||||||
void* m_hWnd;
|
HWND m_hWnd;
|
||||||
|
|
||||||
bool m_managed; // set true when we're attached to a 3rdparty window that's amanged by the emulator
|
bool m_managed; // set true when we're attached to a 3rdparty window that's amanged by the emulator
|
||||||
bool m_frame;
|
bool m_frame;
|
||||||
|
|
Loading…
Reference in New Issue