Skip to content

Commit

Permalink
GRAPHICS: Remove unused ctor from FPS
Browse files Browse the repository at this point in the history
  • Loading branch information
farmboy0 committed Nov 30, 2017
1 parent d7b7eeb commit 5c68582
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions src/graphics/aurora/fps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ FPS::FPS(const FontHandle &font) : Text(font, "0 fps"), _fps(0) {
init();
}

FPS::FPS(const FontHandle &font, float r, float g, float b, float a) :
Text(font, "0 fps", r, g, b, a), _fps(0) {

init();
}

FPS::~FPS() {
hide();
}
Expand Down
1 change: 0 additions & 1 deletion src/graphics/aurora/fps.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ namespace Aurora {
class FPS : public Text, public Events::Notifyable {
public:
FPS(const FontHandle &font);
FPS(const FontHandle &font, float r, float g, float b, float a);
~FPS();

// Renderable
Expand Down

0 comments on commit 5c68582

Please sign in to comment.