Skip to content

Commit

Permalink
Removing a few remaining unnecessary virtuals.
Browse files Browse the repository at this point in the history
  • Loading branch information
afritz1 committed Apr 10, 2018
1 parent 7864c4a commit beea8ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions render/linux/Driver3D_OGL_Linux.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ class Driver3D_OGL_Linux : public Driver3D_IPlatform
Driver3D_OGL_Linux();
virtual ~Driver3D_OGL_Linux();

virtual void SetWindowData(int32_t nParam, void **param) override;
void SetWindowData(int32_t nParam, void **param) override;

virtual void Present() override;
void Present() override;
protected:
private:
};
Expand Down
2 changes: 1 addition & 1 deletion world/Sprite_ZAxis.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class Sprite_ZAxis : public RenderComponent
}

//Oriented Sprite specific functions.
virtual void SetTextureHandle(TextureHandle hTex) override { m_hTex = hTex; }
void SetTextureHandle(TextureHandle hTex) override { m_hTex = hTex; }
void SetBaseIntensity(float fBaseItens) { m_fBaseItens = fBaseItens; }

void SetFlag(uint32_t uFlag) { m_uFlags |= uFlag; }
Expand Down

0 comments on commit beea8ee

Please sign in to comment.