diff options
Diffstat (limited to 'engines/savestate.h')
-rw-r--r-- | engines/savestate.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/engines/savestate.h b/engines/savestate.h index 567750c4be..e91cc9c78d 100644 --- a/engines/savestate.h +++ b/engines/savestate.h @@ -177,6 +177,14 @@ public: */ const Common::String &getPlayTime() const { return _playTime; } + /** + * Returns the time the game was played before the save state was created + * in milliseconds. + * + * It defaults to 0. + */ + uint32 getPlayTimeMSecs() const { return _playTimeMSecs; } + private: /** * The saveslot id, as it would be passed to the "-x" command line switch. @@ -220,6 +228,12 @@ private: Common::String _playTime; /** + * The time the game was played before the save state was created + * in milliseconds. + */ + uint32 _playTimeMSecs; + + /** * The thumbnail of the save state. */ Common::SharedPtr<Graphics::Surface> _thumbnail; |