diff options
author | Jonathan Gray | 2003-09-28 00:59:01 +0000 |
---|---|---|
committer | Jonathan Gray | 2003-09-28 00:59:01 +0000 |
commit | 0b923944d256b83e78a39d9578b2062bc54963e8 (patch) | |
tree | 8b4760108fb9f0386ffdafa1d2b9e1e16177944c | |
parent | 58ce94adc37e4d7ff3eb1dced6ca6e1233bc4d04 (diff) | |
download | scummvm-rg350-0b923944d256b83e78a39d9578b2062bc54963e8.tar.gz scummvm-rg350-0b923944d256b83e78a39d9578b2062bc54963e8.tar.bz2 scummvm-rg350-0b923944d256b83e78a39d9578b2062bc54963e8.zip |
don't try to pass NULL when there is an int argument
svn-id: r10454
-rw-r--r-- | common/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/timer.cpp b/common/timer.cpp index e8d6e24c4e..511d4f03e3 100644 --- a/common/timer.cpp +++ b/common/timer.cpp @@ -51,7 +51,7 @@ Timer::Timer(OSystem *system) : } Timer::~Timer() { - _system->set_timer(0, NULL); + _system->set_timer(0, 0); { StackLock lock(_mutex); |