moving the properties out of the define since the values are going to be the same either way

This commit is contained in:
amerhifi 2019-05-21 09:43:09 -07:00
parent 56d8e0123f
commit b3285050ed

View file

@ -314,14 +314,13 @@ class Stats : public QQuickItem {
STATS_PROPERTY(QVector3D, parabolaPicksUpdated, QVector3D(0, 0, 0))
STATS_PROPERTY(QVector3D, collisionPicksUpdated, QVector3D(0, 0, 0))
#ifdef DEBUG_EVENT_QUEUE
STATS_PROPERTY(bool, eventQueueDebuggingOn, true)
STATS_PROPERTY(int, mainThreadQueueDepth, -1);
STATS_PROPERTY(int, nodeListThreadQueueDepth, -1);
#ifdef DEBUG_EVENT_QUEUE
STATS_PROPERTY(bool, eventQueueDebuggingOn, true)
#else
STATS_PROPERTY(bool, eventQueueDebuggingOn, false)
STATS_PROPERTY(int, mainThreadQueueDepth, 0);
STATS_PROPERTY(int, nodeListThreadQueueDepth, 0);
#endif // DEBUG_EVENT_QUEUE
public: