WINTERMUTE: Remove useless constructor from SubtitleCard.

This commit is contained in:
Tobia Tesan
2014-10-15 21:36:46 +02:00
parent 5f25cf1bd7
commit 856e281bf1
2 changed files with 0 additions and 5 deletions
@@ -31,10 +31,6 @@
namespace Wintermute {
SubtitleCard::SubtitleCard(BaseGame *inGame) {
_gameRef = inGame;
_startFrame = _endFrame = 0;
}
SubtitleCard::SubtitleCard(BaseGame *inGame, const Common::String &text, const uint &startFrame, const uint &endFrame) {
// TODO: Fix expandStringByStringTable instead of this ugly hack
-1
View File
@@ -37,7 +37,6 @@ class BaseGame;
class SubtitleCard {
public:
SubtitleCard(BaseGame *inGame);
SubtitleCard(BaseGame *inGame, const Common::String &text, const uint &startFrame, const uint &endFrame);
uint32 getEndFrame();
uint32 getStartFrame();