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/android | |
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/android')
-rw-r--r-- | backends/platform/android/android.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/android/android.cpp b/backends/platform/android/android.cpp index 902599d50f..0b31ee717c 100644 --- a/backends/platform/android/android.cpp +++ b/backends/platform/android/android.cpp @@ -554,6 +554,7 @@ void OSystem_Android::getTimeAndDate(TimeDate &td) const { td.tm_mday = tm.tm_mday; td.tm_mon = tm.tm_mon; td.tm_year = tm.tm_year; + td.tm_wday = tm.tm_wday; } void OSystem_Android::addSysArchivesToSearchSet(Common::SearchSet &s, |