summaryrefslogtreecommitdiff
path: root/src/video/null_v.cpp
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.cpp
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.cpp')
-rw-r--r--src/video/null_v.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video/null_v.cpp b/src/video/null_v.cpp
index 6a0abc6b1..81eed708c 100644
--- a/src/video/null_v.cpp
+++ b/src/video/null_v.cpp
@@ -10,11 +10,10 @@
#include "null_v.h"
static FVideoDriver_Null iFVideoDriver_Null;
-static uint _null_ticks = 0;
const char *VideoDriver_Null::Start(const char* const *parm)
{
- _null_ticks = GetDriverParamInt(parm, "ticks", 1000);
+ this->ticks = GetDriverParamInt(parm, "ticks", 1000);
_screen.width = _screen.pitch = _cur_resolution[0];
_screen.height = _cur_resolution[1];
/* Do not render, nor blit */
@@ -31,7 +30,7 @@ void VideoDriver_Null::MainLoop()
{
uint i;
- for (i = 0; i < _null_ticks; i++) {
+ for (i = 0; i < this->ticks; i++) {
GameLoop();
_screen.dst_ptr = NULL;
UpdateWindows();