summaryrefslogtreecommitdiff
path: root/render.h
diff options
context:
space:
mode:
Diffstat (limited to 'render.h')
-rw-r--r--render.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/render.h b/render.h
index 6797e1a..b0e50cf 100644
--- a/render.h
+++ b/render.h
@@ -134,6 +134,18 @@ public:
static bool ItemColor(const std::string &Color, tColor &Result);
static std::string ImagePath(const std::string &Filename);
static cxType GetToken(const txToken &Token);
+
+ // update infos
+ struct tUpdate
+ {
+ bool timerConflict;
+ bool events;
+ std::string currentItem;
+ bool resetMarquee;
+ bool foundFirstItem;
+
+ tUpdate(void) : timerConflict(true), events(true), currentItem(""), resetMarquee(true), foundFirstItem(false) {}
+ } mUpdate;
};
inline void cText2SkinRender::Flush(bool Force)