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 /backends/platform/android | |
| 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 '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, | 
