diff options
author | Matthew Hoops | 2012-06-09 20:20:19 -0400 |
---|---|---|
committer | Matthew Hoops | 2012-06-09 20:21:48 -0400 |
commit | b2f5721e58e94b918c5b7032e315396f4fb6c51d (patch) | |
tree | 919ea28c4b648fd5dac3ad0725678e03944ae6d6 /backends/platform/iphone | |
parent | 0e5ae35e345d6e7f38177e158dcc871cf7a034d3 (diff) | |
download | scummvm-rg350-b2f5721e58e94b918c5b7032e315396f4fb6c51d.tar.gz scummvm-rg350-b2f5721e58e94b918c5b7032e315396f4fb6c51d.tar.bz2 scummvm-rg350-b2f5721e58e94b918c5b7032e315396f4fb6c51d.zip |
COMMON: Add tm_wday to our TimeDate struct
Did not adapt bada or ps2 backends as I'm not sure how they should be handled
Diffstat (limited to 'backends/platform/iphone')
-rw-r--r-- | backends/platform/iphone/osys_main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/iphone/osys_main.cpp b/backends/platform/iphone/osys_main.cpp index 6935399c95..f9b2a81ce6 100644 --- a/backends/platform/iphone/osys_main.cpp +++ b/backends/platform/iphone/osys_main.cpp @@ -235,6 +235,7 @@ void OSystem_IPHONE::getTimeAndDate(TimeDate &td) const { td.tm_mday = t.tm_mday; td.tm_mon = t.tm_mon; td.tm_year = t.tm_year; + td.tm_wday = t.tm_wday; } Audio::Mixer *OSystem_IPHONE::getMixer() { |