GSdx: fixing windows side...

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4347 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gabest11 2011-02-23 09:25:13 +00:00
parent 7dd16f1b1b
commit 84ee819258
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;