diff options
author | Max Horn | 2003-09-28 21:08:48 +0000 |
---|---|---|
committer | Max Horn | 2003-09-28 21:08:48 +0000 |
commit | 17bf7b95aa8fb28dcacbe01a5ff547032ffbea1d (patch) | |
tree | d45dcf601b6e3ef0983210144d869821a435c9c3 /common/timer.h | |
parent | 84ed3e272d7a470fac35e446ad9adbbd2c374f82 (diff) | |
download | scummvm-rg350-17bf7b95aa8fb28dcacbe01a5ff547032ffbea1d.tar.gz scummvm-rg350-17bf7b95aa8fb28dcacbe01a5ff547032ffbea1d.tar.bz2 scummvm-rg350-17bf7b95aa8fb28dcacbe01a5ff547032ffbea1d.zip |
removed duplicate g_timer object (one was global, one was static to timer.cpp); set g_system earlier (might prevent a few race conditions)
svn-id: r10471
Diffstat (limited to 'common/timer.h')
-rw-r--r-- | common/timer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/timer.h b/common/timer.h index 8299b193f7..5aaa7ccf96 100644 --- a/common/timer.h +++ b/common/timer.h @@ -60,6 +60,8 @@ protected: int handler(int t); }; +extern Timer *g_timer; + #endif #endif |