aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/dc
diff options
context:
space:
mode:
authorMatthew Hoops2012-06-09 20:20:19 -0400
committerMatthew Hoops2012-06-09 20:21:48 -0400
commitb2f5721e58e94b918c5b7032e315396f4fb6c51d (patch)
tree919ea28c4b648fd5dac3ad0725678e03944ae6d6 /backends/platform/dc
parent0e5ae35e345d6e7f38177e158dcc871cf7a034d3 (diff)
downloadscummvm-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/dc')
-rw-r--r--backends/platform/dc/dcmain.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/dc/dcmain.cpp b/backends/platform/dc/dcmain.cpp
index 3e3279f9c3..bec1fdae3a 100644
--- a/backends/platform/dc/dcmain.cpp
+++ b/backends/platform/dc/dcmain.cpp
@@ -213,6 +213,7 @@ void OSystem_Dreamcast::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;
}
Common::SeekableReadStream *OSystem_Dreamcast::createConfigReadStream() {