summaryrefslogtreecommitdiff
path: root/src/video/null_v.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-07-13 13:03:20 +0000
committerpeter1138 <peter1138@openttd.org>2007-07-13 13:03:20 +0000
commit243c59be6f910ed8c2bcfc8c8c03dd1839b32ca1 (patch)
tree79b9e0b34f3c0bb1ec1d5d434d7fd54442b5b7bc /src/video/null_v.h
parent5ed3482aac730afbe1970c76ba30a6cee6e1ca42 (diff)
downloadopenttd-243c59be6f910ed8c2bcfc8c8c03dd1839b32ca1.tar.xz
(svn r10542) -Codechange: use class member instead of global variable for null ticks value
Diffstat (limited to 'src/video/null_v.h')
-rw-r--r--src/video/null_v.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video/null_v.h b/src/video/null_v.h
index b5b21bbbb..d2e8b4b18 100644
--- a/src/video/null_v.h
+++ b/src/video/null_v.h
@@ -6,6 +6,9 @@
#include "video_driver.hpp"
class VideoDriver_Null: public VideoDriver {
+private:
+ uint ticks;
+
public:
/* virtual */ const char *Start(const char * const *param);