diff options
author | Andre Heider | 2009-02-25 21:43:57 +0000 |
---|---|---|
committer | Andre Heider | 2009-02-25 21:43:57 +0000 |
commit | 9af7fba681fa1f0b48ec7c8d13305404b5f82efb (patch) | |
tree | d0674187220786687c4ac014c216ea898aa55ab2 /engines/sci/include | |
parent | 1786ecabbf567b60cf628d0235b52b5343c013ad (diff) | |
download | scummvm-rg350-9af7fba681fa1f0b48ec7c8d13305404b5f82efb.tar.gz scummvm-rg350-9af7fba681fa1f0b48ec7c8d13305404b5f82efb.tar.bz2 scummvm-rg350-9af7fba681fa1f0b48ec7c8d13305404b5f82efb.zip |
reintroduce game_start_time (removed it in r38701), since the interpreter can be restarted and it can be retrieved via script function (eg. LSL3 about box)
svn-id: r38888
Diffstat (limited to 'engines/sci/include')
-rw-r--r-- | engines/sci/include/engine.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/include/engine.h b/engines/sci/include/engine.h index e1e8b6700b..036ccb1c64 100644 --- a/engines/sci/include/engine.h +++ b/engines/sci/include/engine.h @@ -174,6 +174,7 @@ struct EngineState { int pics_nr; drawn_pic_t *pics; + uint32 game_start_time; /* The time at which the interpreter was started */ uint32 last_wait_time; /* The last time the game invoked Wait() */ byte version_lock_flag; /* Set to 1 to disable any autodetection mechanisms */ |