summaryrefslogtreecommitdiff
path: root/library/multithreading.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/multithreading.h')
-rw-r--r--library/multithreading.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/multithreading.h b/library/multithreading.h
index 36b37f2a..56cff890 100644
--- a/library/multithreading.h
+++ b/library/multithreading.h
@@ -35,7 +35,7 @@ protected:
};
-const int uiUpdateInterval = 100; //perform ui updates not more often than necessary, 100 seems to be a good value with only a minimal performance loss
+const int UI_UPDATE_INTERVAL = 100; //perform ui updates not more often than necessary, 100 seems to be a good value with only a minimal performance loss
class WorkerThread;
bgstack15