diff options
author | Johannes Schickel | 2012-06-17 17:17:06 -0700 |
---|---|---|
committer | Johannes Schickel | 2012-06-17 17:17:06 -0700 |
commit | 1b1b1d6615c4555e133a59c2c221bae65853c1f2 (patch) | |
tree | e4bdd0dcf39948fd595eac57ce214f3c55038639 /common | |
parent | 269ea2f6be551f3159c1e508e28ebd2a609f5ab0 (diff) | |
parent | 249d48f77b395d82b8f2bb67360c5539212f5bc4 (diff) | |
download | scummvm-rg350-1b1b1d6615c4555e133a59c2c221bae65853c1f2.tar.gz scummvm-rg350-1b1b1d6615c4555e133a59c2c221bae65853c1f2.tar.bz2 scummvm-rg350-1b1b1d6615c4555e133a59c2c221bae65853c1f2.zip |
Merge pull request #244 from clone2727/football2002-wday
COMMON: Add tm_wday to our TimeDate struct
Diffstat (limited to 'common')
-rw-r--r-- | common/system.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/system.h b/common/system.h index 94bf7f01eb..dd9900d9ce 100644 --- a/common/system.h +++ b/common/system.h @@ -78,6 +78,7 @@ struct TimeDate { int tm_mday; ///< day of month (1 - 31) int tm_mon; ///< month of year (0 - 11) int tm_year; ///< year - 1900 + int tm_wday; ///< days since Sunday (0 - 6) }; namespace LogMessageType { |