diff options
author | Max Horn | 2007-12-20 14:29:58 +0000 |
---|---|---|
committer | Max Horn | 2007-12-20 14:29:58 +0000 |
commit | 6d37f5ccd8a2f5859ec69bd4924bc50eb4293464 (patch) | |
tree | 44bc0574c8a892d9497d52a27bb67dc156891657 /engines/gob | |
parent | 93ccd61b7e94ff8c49946144814ec5c0322450b3 (diff) | |
download | scummvm-rg350-6d37f5ccd8a2f5859ec69bd4924bc50eb4293464.tar.gz scummvm-rg350-6d37f5ccd8a2f5859ec69bd4924bc50eb4293464.tar.bz2 scummvm-rg350-6d37f5ccd8a2f5859ec69bd4924bc50eb4293464.zip |
Do not #include time.h globally (ideally, we should provide a localtime clone in OSystem so we can completly get rid of this)
svn-id: r29919
Diffstat (limited to 'engines/gob')
-rw-r--r-- | engines/gob/inter.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/gob/inter.cpp b/engines/gob/inter.cpp index 0f76ff4bbc..3c0127fdbd 100644 --- a/engines/gob/inter.cpp +++ b/engines/gob/inter.cpp @@ -36,6 +36,8 @@ #include "gob/scenery.h" #include "gob/sound.h" +#include <time.h> // FIXME: for Inter::renewTimeInVars() + namespace Gob { Inter::Inter(GobEngine *vm) : _vm(vm) { |