aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/savescn.h
diff options
context:
space:
mode:
authorMax Horn2009-10-08 19:41:38 +0000
committerMax Horn2009-10-08 19:41:38 +0000
commit42120ed626c0d18bc1e1738678dbd1fa96481f04 (patch)
tree90715ea5e5bb3f3f24547f484b2355194b9cd93c /engines/tinsel/savescn.h
parentf5ccaf7e29183d6e51456d5994eccfd35ff9a117 (diff)
downloadscummvm-rg350-42120ed626c0d18bc1e1738678dbd1fa96481f04.tar.gz
scummvm-rg350-42120ed626c0d18bc1e1738678dbd1fa96481f04.tar.bz2
scummvm-rg350-42120ed626c0d18bc1e1738678dbd1fa96481f04.zip
Introduce a new struct TimeDate, replacing struct tm in client code. May lead to compilation issues in ports, which should be trivial to fix, though
svn-id: r44793
Diffstat (limited to 'engines/tinsel/savescn.h')
-rw-r--r--engines/tinsel/savescn.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/tinsel/savescn.h b/engines/tinsel/savescn.h
index 0f272c21bb..21e7dd032b 100644
--- a/engines/tinsel/savescn.h
+++ b/engines/tinsel/savescn.h
@@ -27,8 +27,6 @@
#ifndef TINSEL_SAVESCN_H
#define TINSEL_SAVESCN_H
-#include <time.h> // for time_t struct
-
#include "tinsel/actors.h" // SAVED_ACTOR
#include "tinsel/dw.h" // SCNHANDLE
#include "tinsel/rince.h" // SAVED_MOVER
@@ -52,7 +50,7 @@ enum {
struct SFILES {
char name[FNAMELEN];
char desc[SG_DESC_LEN + 2];
- struct tm dateTime;
+ TimeDate dateTime;
};
struct SAVED_DATA {