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 { ...@@ -615,7 +615,7 @@ typedef struct {
#endif #endif
//! presents a surface in the client area //! 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; HWND hwnd = HWnd;
if ( windowId ) if ( windowId )
......
...@@ -54,7 +54,7 @@ namespace irr ...@@ -54,7 +54,7 @@ namespace irr
virtual bool isWindowActive() const; virtual bool isWindowActive() const;
//! presents a surface in the client area //! 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 //! notifies the device that it should close itself
virtual void closeDevice(); 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