diff options
author | Travis Howell | 2009-02-16 09:44:00 +0000 |
---|---|---|
committer | Travis Howell | 2009-02-16 09:44:00 +0000 |
commit | 954aa46b8ae1fa34ee2f3e134904de08f138a0af (patch) | |
tree | 0c99cb4fff67cc2c39c62ac6842aaa25d3848e4b /engines/sci/sfx/timer | |
parent | ee92dbbe41c2789e7e237f524d184de11de47eef (diff) | |
download | scummvm-rg350-954aa46b8ae1fa34ee2f3e134904de08f138a0af.tar.gz scummvm-rg350-954aa46b8ae1fa34ee2f3e134904de08f138a0af.tar.bz2 scummvm-rg350-954aa46b8ae1fa34ee2f3e134904de08f138a0af.zip |
SCUMMVM define no longer required.
svn-id: r38361
Diffstat (limited to 'engines/sci/sfx/timer')
-rw-r--r-- | engines/sci/sfx/timer/timers.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/engines/sci/sfx/timer/timers.cpp b/engines/sci/sfx/timer/timers.cpp index 3caf21f6b1..82a1d11d6c 100644 --- a/engines/sci/sfx/timer/timers.cpp +++ b/engines/sci/sfx/timer/timers.cpp @@ -28,30 +28,10 @@ #include "sci/include/sfx_timer.h" #include "sci/include/resource.h" -#ifdef SCUMMVM extern sfx_timer_t sfx_timer_scummvm; -#else // SCUMMVM - -#ifdef HAVE_SETITIMER -extern sfx_timer_t sfx_timer_sigalrm; -#endif - -#ifdef __DC__ -extern sfx_timer_t sfx_timer_pthread; -#endif -#endif // SCUMMVM sfx_timer_t *sfx_timers[] = { -#ifdef SCUMMVM &sfx_timer_scummvm, -#else // SCUMMVM -#ifdef HAVE_SETITIMER - &sfx_timer_sigalrm, -#endif -#ifdef __DC__ - &sfx_timer_pthread, -#endif -#endif // SCUMMVM NULL }; |