don't try to pass NULL when there is an int argument

svn-id: r10454
This commit is contained in:
Jonathan Gray 2003-09-28 00:59:01 +00:00
parent 58ce94adc3
commit 0b923944d2

View File

@ -51,7 +51,7 @@ Timer::Timer(OSystem *system) :
}
Timer::~Timer() {
_system->set_timer(0, NULL);
_system->set_timer(0, 0);
{
StackLock lock(_mutex);