mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-10 01:33:51 +01:00
Add missing overrides to fix compiler warnings
This commit is contained in:
parent
ba0396e93d
commit
24594ce226
@ -73,13 +73,13 @@ public:
|
|||||||
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) _IRR_OVERRIDE_;
|
virtual const core::aabbox3d<f32>& getTransformedBillboardBoundingBox(const irr::scene::ICameraSceneNode* camera) _IRR_OVERRIDE_;
|
||||||
|
|
||||||
//! Get the amount of mesh buffers.
|
//! Get the amount of mesh buffers.
|
||||||
virtual u32 getMeshBufferCount() const
|
virtual u32 getMeshBufferCount() const _IRR_OVERRIDE_
|
||||||
{
|
{
|
||||||
return Buffer ? 1 : 0;
|
return Buffer ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
//! Get pointer to the mesh buffer.
|
//! Get pointer to the mesh buffer.
|
||||||
virtual IMeshBuffer* getMeshBuffer(u32 nr) const
|
virtual IMeshBuffer* getMeshBuffer(u32 nr) const _IRR_OVERRIDE_
|
||||||
{
|
{
|
||||||
if ( nr == 0 )
|
if ( nr == 0 )
|
||||||
return Buffer;
|
return Buffer;
|
||||||
|
Loading…
Reference in New Issue
Block a user