Commit 1d3860ec authored by hybrid's avatar hybrid

Remove extra semicolons.

git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@1640 dfc29bdd-3216-0410-991c-e03cc46cb475
parent bbc0b48e
...@@ -1195,6 +1195,7 @@ ECOLOR_FORMAT CImage::getColorFormat() const ...@@ -1195,6 +1195,7 @@ ECOLOR_FORMAT CImage::getColorFormat() const
return Format; return Format;
} }
//! draws a rectangle //! draws a rectangle
void CImage::drawRectangle(const core::rect<s32>& rect, const SColor &color) void CImage::drawRectangle(const core::rect<s32>& rect, const SColor &color)
{ {
...@@ -1362,7 +1363,7 @@ void CImage::copyToScalingBoxFilter(IImage* target, s32 bias) ...@@ -1362,7 +1363,7 @@ void CImage::copyToScalingBoxFilter(IImage* target, s32 bias)
sx = 0.f; sx = 0.f;
for ( s32 x = 0; x != destSize.Width; ++x ) for ( s32 x = 0; x != destSize.Width; ++x )
{ {
target->setPixel( x, y, getPixelBox( core::floor32( sx ), core::floor32( sy ), fx, fy, bias ) ); target->setPixel( x, y, getPixelBox( core::floor32(sx), core::floor32(sy), fx, fy, bias ) );
sx += sourceXStep; sx += sourceXStep;
} }
sy += sourceYStep; sy += sourceYStep;
......
...@@ -43,10 +43,10 @@ public: ...@@ -43,10 +43,10 @@ public:
virtual void* lock() virtual void* lock()
{ {
return Data; return Data;
}; }
//! Unlock function. //! Unlock function.
virtual void unlock() {}; virtual void unlock() {}
//! Returns width and height of image data. //! Returns width and height of image data.
virtual const core::dimension2d<s32>& getDimension() const; virtual const core::dimension2d<s32>& getDimension() const;
......
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