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/wii | |
| 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/wii')
| -rw-r--r-- | backends/platform/wii/osystem.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/wii/osystem.cpp b/backends/platform/wii/osystem.cpp index 258a782cc4..681675529a 100644 --- a/backends/platform/wii/osystem.cpp +++ b/backends/platform/wii/osystem.cpp @@ -269,6 +269,7 @@ void OSystem_Wii::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; } void OSystem_Wii::showOptionsDialog() { |
