Commit 1dac6b6c authored by hybrid's avatar hybrid

Fixed a method signature bug, found by kburkhart84

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1361 dfc29bdd-3216-0410-991c-e03cc46cb475
parent daeb4d04
......@@ -615,7 +615,7 @@ typedef struct {
#endif
//! presents a surface in the client area
void CIrrDeviceWinCE::present(video::IImage* image, s32 windowId, core::rect<s32>* src )
void CIrrDeviceWinCE::present(video::IImage* image, void* windowId, core::rect<s32>* src)
{
HWND hwnd = HWnd;
if ( windowId )
......
......@@ -54,7 +54,7 @@ namespace irr
virtual bool isWindowActive() const;
//! presents a surface in the client area
virtual void present(video::IImage* surface, s32 windowId = 0, core::rect<s32>* src=0 );
virtual void present(video::IImage* surface, void* windowId = 0, core::rect<s32>* src=0 );
//! notifies the device that it should close itself
virtual void closeDevice();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment