Introduce a new struct TimeDate, replacing struct tm in client code. May lead to compilation issues in ports, which should be trivial to fix, though
svn-id: r44793
This commit is contained in:
parent
f5ccaf7e29
commit
42120ed626
33 changed files with 134 additions and 75 deletions
|
@ -115,7 +115,7 @@ public:
|
|||
|
||||
virtual Common::SaveFileManager *getSavefileManager();
|
||||
virtual Audio::Mixer *getMixer();
|
||||
virtual void getTimeAndDate(struct tm &t) const;
|
||||
virtual void getTimeAndDate(TimeDate &t) const;
|
||||
virtual Common::TimerManager *getTimerManager();
|
||||
FilesystemFactory *getFilesystemFactory();
|
||||
|
||||
|
@ -321,7 +321,7 @@ Common::TimerManager *OSystem_NULL::getTimerManager() {
|
|||
return _timer;
|
||||
}
|
||||
|
||||
void OSystem_NULL::getTimeAndDate(struct tm &t) const {
|
||||
void OSystem_NULL::getTimeAndDate(TimeDate &t) const {
|
||||
}
|
||||
|
||||
FilesystemFactory *OSystem_NULL::getFilesystemFactory() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue