summaryrefslogtreecommitdiffstats
path: root/apps/plugins/sdl/progs
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2017-12-24 12:58:33 -0500
committerFranklin Wei <git@fwei.tk>2017-12-24 12:58:33 -0500
commit7ea37bb806a6faeb4e8f9b115f256735f089b169 (patch)
tree9acdddadc58d2c92146a44485eb9a9f4de24f809 /apps/plugins/sdl/progs
parent6416d96fbc6946a0eee8ba29bb881fbf4dcbe607 (diff)
downloadrockbox-7ea37bb806a6faeb4e8f9b115f256735f089b169.tar.gz
rockbox-7ea37bb806a6faeb4e8f9b115f256735f089b169.zip
fix red
Change-Id: Ib28cfd9037901c7b8bc9b2960ad2c1c9a1e25a69
Diffstat (limited to 'apps/plugins/sdl/progs')
-rw-r--r--apps/plugins/sdl/progs/duke3d/Game/src/global.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/plugins/sdl/progs/duke3d/Game/src/global.c b/apps/plugins/sdl/progs/duke3d/Game/src/global.c
index 861e1326e8..9c8d3a607a 100644
--- a/apps/plugins/sdl/progs/duke3d/Game/src/global.c
+++ b/apps/plugins/sdl/progs/duke3d/Game/src/global.c
@@ -453,7 +453,6 @@ int _dos_findnext(struct find_t *f)
void _dos_getdate(struct dosdate_t *date)
{
time_t curtime = time(NULL);
- struct tm *tm;
if (date == NULL) {
return;
@@ -461,11 +460,10 @@ void _dos_getdate(struct dosdate_t *date)
memset(date, 0, sizeof(struct dosdate_t));
- rb->mktime(&tm);
- date->day = tm->tm_mday;
- date->month = tm->tm_mon + 1;
- date->year = tm->tm_year + 1900;
- date->dayofweek = tm->tm_wday + 1;
+ date->day = 1;
+ date->month = 1;
+ date->year = 1970;
+ date->dayofweek = 4;
}
#endif