- fix issue 215
- added test for purple screen (this is the small white square on top of the loading screen)
This commit is contained in:
wagic.the.homebrew@gmail.com
2009-11-23 08:25:27 +00:00
parent e364b17117
commit 66a505969e
29 changed files with 110 additions and 151 deletions

View File

@@ -11,7 +11,7 @@ class TextScroller: public JGuiObject{
protected:
string mText;
string tempText;
JLBFont * mFont;
int fontId;
float mWidth;
float mSpeed;
float mX;
@@ -25,7 +25,7 @@ public:
void Add(string text);
void Reset();
void setRandom(int mode = 1);
TextScroller(JLBFont * font, float x, float y, float width, float speed = 30);
TextScroller(int fontId, float x, float y, float width, float speed = 30);
void Render();
void Update(float dt);
virtual ostream& toString(ostream& out) const;