aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
authorJonathan Gray2003-09-28 00:59:01 +0000
committerJonathan Gray2003-09-28 00:59:01 +0000
commit0b923944d256b83e78a39d9578b2062bc54963e8 (patch)
tree8b4760108fb9f0386ffdafa1d2b9e1e16177944c /common
parent58ce94adc37e4d7ff3eb1dced6ca6e1233bc4d04 (diff)
downloadscummvm-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
Diffstat (limited to 'common')
-rw-r--r--common/timer.cpp2
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);