Re: Compile Error in Beta 1 Win32 Code

1999-10-20 Thread Mayhem Chaos Coordinator
FreeAmpUI / Win32Bitmap.cpp, Line 183: hSaved = SelectObject(hMemDC, m_hMaskBitmap); should be casted like so: hSaved = (HBITMAP)SelectObject(hMemDC, m_hMaskBitmap); Ok, thats fixed in my code. That should make its way to CVS later today. Rainplay would not compile at all. Is it

Re: Compile Error in Beta 1 Win32 Code

1999-10-20 Thread Mark B. Elrod
probably not a bad idea... bill has disappeared. i hope he is ok. elrod Mayhem Chaos Coordinator wrote: FreeAmpUI / Win32Bitmap.cpp, Line 183: hSaved = SelectObject(hMemDC, m_hMaskBitmap); should be casted like so: hSaved = (HBITMAP)SelectObject(hMemDC, m_hMaskBitmap); Ok,